diff options
author | 2021-05-11 18:32:11 -0500 | |
---|---|---|
committer | 2021-05-11 17:32:11 -0600 | |
commit | e77c8fff77a54fcb891cc112217b17ad80e315f5 (patch) | |
tree | e3acecdf6b177bfc26f2152143644335a3c205ac | |
parent | 7184149514260c9c5f8525648af1c0f2e51c998e (diff) | |
download | astro-e77c8fff77a54fcb891cc112217b17ad80e315f5.tar.gz astro-e77c8fff77a54fcb891cc112217b17ad80e315f5.tar.zst astro-e77c8fff77a54fcb891cc112217b17ad80e315f5.zip |
Fix workflows! (#198)
* chore: fix changeset workflow
* fix: changeset action
* fix: pre_job => skip_test
* chore: add empty changeset
-rw-r--r-- | .changeset/dry-knives-hammer.md | 2 | ||||
-rw-r--r-- | .github/workflows/changeset.yml | 2 | ||||
-rw-r--r-- | .github/workflows/nodejs.yml | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/.changeset/dry-knives-hammer.md b/.changeset/dry-knives-hammer.md new file mode 100644 index 000000000..a845151cc --- /dev/null +++ b/.changeset/dry-knives-hammer.md @@ -0,0 +1,2 @@ +--- +--- diff --git a/.github/workflows/changeset.yml b/.github/workflows/changeset.yml index 9b225e6e7..43ae0e8c8 100644 --- a/.github/workflows/changeset.yml +++ b/.github/workflows/changeset.yml @@ -23,4 +23,4 @@ jobs: env: CI: true - - run: changeset status --sinceMaster + - run: yarn changeset status --since=main diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index cf5e2c0d7..a16e9e9e2 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -25,7 +25,7 @@ jobs: do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' test: needs: skip_test # allow skip_test to cancel this job if it’s not needed - if: ${{ needs.pre_job.outputs.should_skip != 'true' }} + if: ${{ needs.skip_test.outputs.should_skip != 'true' }} runs-on: ${{ matrix.os }} strategy: matrix: |