We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 283b4f8 commit fe4d8bfCopy full SHA for fe4d8bf
.github/workflows/merge_3.3.x_to_master.yml
@@ -10,11 +10,18 @@ jobs:
10
runs-on: ubuntu-latest
11
12
steps:
13
+ - uses: actions/create-github-app-token@v1
14
+ id: app-token
15
+ with:
16
+ app-id: ${{ vars.MERGE_MASTER_APP_ID }}
17
+ private-key: ${{ secrets.MERGE_MASTER_SECRET }}
18
+
19
- name: Checkout the repository
20
uses: actions/checkout@v4
21
with:
22
fetch-depth: 0 # Fetch full history for proper merging
23
ref: 3.3.x # Checkout the 3.3.x branch
24
+ token: ${{ steps.app-token.outputs.token }}
25
26
- name: Fetch the latest commit information
27
id: get-commit-info
0 commit comments