Skip to content

Commit acee09d

Browse files
committed
Okay, fine, let's use the GitForWindowsHelper App's identity
Apparently _something_ irks GitHub about my usage of the regular `GITHUB_TOKEN`, so let's just continue differently. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 0b8fb73 commit acee09d

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)