1 parent eb07e49 commit d647e39Copy full SHA for d647e39
2 files changed
.github/workflows/ci.yml
@@ -10,6 +10,10 @@ jobs:
10
env:
11
SKIP_CI: ${{ startsWith(github.head_ref, 'changeset-release/') }}
12
steps:
13
+ - name: Skip redundant CI on release PRs
14
+ if: ${{ env.SKIP_CI == 'true' }}
15
+ run: echo "Skipping ${{ matrix.task }} for changeset release PR"
16
+
17
- uses: actions/checkout@v4
18
if: ${{ env.SKIP_CI != 'true' }}
19
.github/workflows/publish.yml
@@ -27,4 +27,4 @@ jobs:
27
publish: pnpm changeset:publish
28
version: pnpm changeset:version
29
30
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.CHANGESETS_GITHUB_TOKEN }}
0 commit comments