We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad6aa5b commit deae554Copy full SHA for deae554
.github/workflows/backport.yml
@@ -13,8 +13,16 @@ jobs:
13
pull-requests: write
14
name: Backport
15
steps:
16
+ - name: GitHub App token
17
+ id: github_app_token
18
+ uses: tibdex/github-app-token@v1.5.0
19
+ with:
20
+ app_id: ${{ secrets.APP_ID }}
21
+ private_key: ${{ secrets.APP_PRIVATE_KEY }}
22
+ installation_id: 22958780
23
+
24
- name: Backport
25
uses: VachaShah/backport@v1.1.4
26
with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
27
+ github_token: ${{ steps.github_app_token.outputs.token }}
28
branch_name: backport/backport-${{ github.event.number }}
0 commit comments