We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9270525 commit 612ad49Copy full SHA for 612ad49
1 file changed
.github/workflows/sync-branches.yml
@@ -14,13 +14,16 @@ jobs:
14
runs-on: ubuntu-latest
15
16
steps:
17
- - uses: actions/checkout@v5
18
- name: Get PAT for app
19
uses: actions/create-github-app-token@v2
20
id: app-token
21
with:
22
app-id: ${{ secrets.APP_ID }}
23
private-key: ${{ secrets.APP_SECRET }}
+
24
+ - uses: actions/checkout@v5
25
+ with:
26
+ token: ${{ steps.app-token.outputs.token }}
27
- name: Push changes
28
uses: ad-m/github-push-action@master
29
0 commit comments