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 3bf9784 commit 941db65Copy full SHA for 941db65
.github/workflows/pr-auto-update.yml
@@ -10,9 +10,16 @@ jobs:
10
pull-requests: write
11
contents: write
12
steps:
13
+ - name: Generate Access Token
14
+ uses: actions/create-github-app-token@v2
15
+ id: generate-token
16
+ with:
17
+ app-id: ${{ vars.PR_AUTO_UPDATE_CLIENT_ID }}
18
+ private-key: ${{ secrets.PR_AUTO_UPDATE_PRIVATE_KEY }}
19
+
20
- uses: CSSUoB/[email protected]
21
env:
- GITHUB_TOKEN: '${{ secrets.PR_AUTO_UPDATE_TOKEN }}'
22
+ GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
23
PR_FILTER: 'labelled'
24
PR_LABELS: 'sync'
25
MERGE_CONFLICT_ACTION: 'label'
0 commit comments