We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
notify-team-to-review-pr.yml
GH_ACCESS_TOKEN
1 parent a9606b3 commit 444b80cCopy full SHA for 444b80c
.github/workflows/notify-team-to-review-pr.yml
@@ -17,6 +17,9 @@ jobs:
17
- name: Add review-requested label
18
uses: actions/github-script@v7
19
with:
20
+ # the regular `secrets.GITHUB_TOKEN` results in a 403 error
21
+ # HttpError: Resource not accessible by integration
22
+ github-token: ${{ secrets.GH_ACCESS_TOKEN }}
23
# language=javascript
24
script: |
25
await github.rest.issues.addLabels({
0 commit comments