File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 24
24
- name : Yarn install
25
25
run : yarn
26
26
- name : Run changeset script
27
- run : yarn ts-node-script scripts/ci/check_changeset.ts
27
+ # pull master so changeset can diff against it
28
+ run : |
29
+ git pull -f --no-rebase origin master:master
30
+ yarn ts-node-script scripts/ci/check_changeset.ts
28
31
id : check-changeset
29
32
- name : Print changeset checker output
30
33
run : echo "${{steps.check-changeset.outputs.CHANGESET_ERROR_MESSAGE}}"
Original file line number Diff line number Diff line change 23
23
run : yarn
24
24
25
25
- name : Add a changeset for @firebase/app
26
+ # pull master so changeset can diff against it
26
27
run : |
27
- git pull -f origin master:master
28
+ git pull -f --no-rebase origin master:master
28
29
yarn ts-node-script scripts/ci/add_changeset.ts
29
30
30
31
- name : Create Release Pull Request
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ async function parseChangesetFile(changesetFile: string) {
123
123
async function main ( ) {
124
124
const errors = [ ] ;
125
125
try {
126
- await exec ( `yarn changeset status --since ${ baseRef } ` ) ;
126
+ await exec ( `yarn changeset status` ) ;
127
127
console . log ( `::set-output name=BLOCKING_FAILURE::false` ) ;
128
128
} catch ( e ) {
129
129
if ( e . message . match ( 'No changesets present' ) ) {
You can’t perform that action at this time.
0 commit comments