File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 9
9
sync :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
+ - uses : actions/create-github-app-token@v2
13
+ id : app-token
14
+ with :
15
+ app-id : ${{ vars.SYNC_FILES_APP_ID }}
16
+ private-key : ${{ secrets.SYNC_FILES_TOKEN }}
17
+
12
18
- name : Checkout Repository
13
- uses : actions/checkout@main
19
+ uses : actions/checkout@v4
20
+ with :
21
+ token : ${{ steps.app-token.outputs.token }}
14
22
15
23
- name : Run GitHub File Sync
16
24
uses : BetaHuhn/repo-file-sync-action@v1
17
25
with :
18
- GH_PAT : ${{ secrets.SYNC_PAT }}
26
+ GH_PAT : ${{ steps.app-token.outputs.token }}
19
27
ASSIGNEES : lwjohnst86
20
28
IS_FINE_GRAINED : true
21
- GIT_USERNAME : lwjohnst86
22
- GIT_EMAIL : lwjohnst@gmail .com
29
+ GIT_USERNAME : github-actions[bot]
30
+ GIT_EMAIL : 41898282+github-actions[bot]@users.noreply.github .com
23
31
COMMIT_PREFIX : " chore(sync): :hammer: "
24
32
BRANCH_PREFIX : chore
25
33
TEAM_REVIEWERS : admin
You can’t perform that action at this time.
0 commit comments