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 fe5bb6c commit a6f8d6aCopy full SHA for a6f8d6a
.github/workflows/backport.yml
@@ -25,6 +25,14 @@ jobs:
25
)
26
27
steps:
28
+ - uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
29
+ id: app-token
30
+ with:
31
+ app-id: ${{ vars.APP_ID }}
32
+ private-key: ${{ secrets.PRIVATE_KEY }}
33
+ permission-contents: write # push branch to Github
34
+ permission-pull-requests: write # create PR / add comment for manual backport
35
+ permission-workflows: write # modify files in .github/workflows
36
- uses: tibdex/backport@9565281eda0731b1d20c4025c43339fb0a23812e # v2.0.4
37
with:
- github_token: ${{ secrets.BACKPORT_TOKEN }}
38
+ github_token: ${{ steps.app-token.outputs.token }}
0 commit comments