File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 19
19
name : Subtree for Common
20
20
runs-on : ubuntu-latest
21
21
steps :
22
+ - uses : actions/create-github-app-token@v1
23
+ id : app-token
24
+ with :
25
+ app-id : ${{ vars.SUBTREE_APP_ID }}
26
+ private-key : ${{ secrets.SUBTREE_APP_PRIVATE_KEY }}
22
27
- uses : actions/checkout@v4
23
28
with :
24
- token : ${{ secrets.SUBTREE_GITHUB_TOKEN }}
29
+ token : ${{ steps.app-token.outputs.token }}
25
30
fetch-depth : 0
26
31
- name : Subtree Split
27
32
uses : ./.github/actions/subtree
33
38
name : Subtree for Http
34
39
runs-on : ubuntu-latest
35
40
steps :
41
+ - uses : actions/create-github-app-token@v1
42
+ id : app-token
43
+ with :
44
+ app-id : ${{ vars.SUBTREE_APP_ID }}
45
+ private-key : ${{ secrets.SUBTREE_APP_PRIVATE_KEY }}
36
46
- uses : actions/checkout@v4
37
47
with :
38
- token : ${{ secrets.SUBTREE_GITHUB_TOKEN }}
48
+ token : ${{ steps.app-token.outputs.token }}
39
49
fetch-depth : 0
40
50
- name : Subtree Split
41
51
uses : ./.github/actions/subtree
You can’t perform that action at this time.
0 commit comments