We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5dea19a + 21dd736 commit e78d079Copy full SHA for e78d079
.github/workflows/cd.yaml
@@ -43,7 +43,11 @@ jobs:
43
commit: "Bump package version"
44
45
env:
46
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ # This action will raise a PR to edit package.json and package-lock.json.
47
+ # PRs raised by the default `secrets.GITHUB_TOKEN` will not trigger CI, so we need to provide a different token.
48
+ # This is a PAT for the guardian-ci user.
49
+ # See https://docs.github.com/en/actions/reference/events-that-trigger-workflows#triggering-new-workflows-using-a-personal-access-token
50
+ GITHUB_TOKEN: ${{ secrets.GU_GUARDIAN_CI_TOKEN }}
51
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
52
53
- name: Release docs
0 commit comments