Fix workflows! (#198)
* chore: fix changeset workflow * fix: changeset action * fix: pre_job => skip_test * chore: add empty changeset
This commit is contained in:
parent
7184149514
commit
e77c8fff77
3 changed files with 4 additions and 2 deletions
2
.changeset/dry-knives-hammer.md
Normal file
2
.changeset/dry-knives-hammer.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
---
|
2
.github/workflows/changeset.yml
vendored
2
.github/workflows/changeset.yml
vendored
|
@ -23,4 +23,4 @@ jobs:
|
|||
env:
|
||||
CI: true
|
||||
|
||||
- run: changeset status --sinceMaster
|
||||
- run: yarn changeset status --since=main
|
||||
|
|
2
.github/workflows/nodejs.yml
vendored
2
.github/workflows/nodejs.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue