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.
1 parent 9b02bb8 commit 0fb7b8eCopy full SHA for 0fb7b8e
.github/workflows/initialize-releases.yml
@@ -9,10 +9,15 @@ jobs:
9
contents: write
10
steps:
11
- 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 }}
17
- name: mirror Git for Windows' Pacman repository to GitHub releases
18
uses: actions/github-script@v7
19
env:
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
+ GH_TOKEN: ${{ steps.token.outputs.token }}
21
with:
22
script: |
23
const makeList = require('./make-list.js')
0 commit comments