Skip to content

Commit 9b02bb8

Browse files
committed
Work around a 403 again
Seems that the GitHub App token, even, ran into some rate limiting. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent e8100c9 commit 9b02bb8

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Diff for: .github/workflows/initialize-releases.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,10 @@ jobs:
99
contents: write
1010
steps:
1111
- uses: actions/checkout@v4
12-
- uses: actions/create-github-app-token@v1
13-
id: token
14-
with:
15-
app-id: ${{ secrets.GH_APP_ID }}
16-
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
1712
- name: mirror Git for Windows' Pacman repository to GitHub releases
1813
uses: actions/github-script@v7
1914
env:
20-
GH_TOKEN: ${{ steps.token.outputs.token }}
15+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2116
with:
2217
script: |
2318
const makeList = require('./make-list.js')

0 commit comments

Comments
 (0)