File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -115,19 +115,21 @@ jobs:
115
115
SOURCE_BRANCH : ${{ needs.prepare.outputs.backport_source_branch }}
116
116
TARGET_BRANCH : ${{ matrix.target_branch }}
117
117
steps :
118
- - uses : actions/create-github-app-token@31c86eb3b33c9b601a1f60f98dcbfd1d70f379b4
118
+ - name : Generate token
119
+ uses : actions/create-github-app-token@31c86eb3b33c9b601a1f60f98dcbfd1d70f379b4
119
120
id : app-token
120
121
with :
121
122
app-id : ${{ vars.AUTOMATION_APP_ID }}
122
123
private-key : ${{ secrets.AUTOMATION_PRIVATE_KEY }}
123
- - uses : actions/checkout@v4
124
+
125
+ - name : Checkout
126
+ uses : actions/checkout@v4
124
127
with :
125
128
fetch-depth : 0 # Need full history for calculation of diffs
129
+ token : ${{ steps.app-token.outputs.token }}
126
130
- uses : ./.github/actions/release-initialise
127
131
128
132
- name : Update older release branch
129
- env :
130
- GITHUB_TOKEN : ${{ steps.app-token.outputs.token }}
131
133
run : |
132
134
echo SOURCE_BRANCH=${SOURCE_BRANCH}
133
135
echo TARGET_BRANCH=${TARGET_BRANCH}
You can’t perform that action at this time.
0 commit comments