Skip to content

Commit 0fb7b8e

Browse files
committed
Work around a 403 again
Let's try the installation access token again... This reverts commit 9b02bb8. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 9b02bb8 commit 0fb7b8e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/initialize-releases.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,15 @@ 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 }}
1217
- name: mirror Git for Windows' Pacman repository to GitHub releases
1318
uses: actions/github-script@v7
1419
env:
15-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
GH_TOKEN: ${{ steps.token.outputs.token }}
1621
with:
1722
script: |
1823
const makeList = require('./make-list.js')

0 commit comments

Comments
 (0)