Skip to content

Commit fe4d8bf

Browse files
committed
[ticket/17396] Use GitHub App to merge to master
[skip actions] Due to no code changes that run in PRs. PHPBB-17396
1 parent 283b4f8 commit fe4d8bf

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/merge_3.3.x_to_master.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,18 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
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+
1319
- name: Checkout the repository
1420
uses: actions/checkout@v4
1521
with:
1622
fetch-depth: 0 # Fetch full history for proper merging
1723
ref: 3.3.x # Checkout the 3.3.x branch
24+
token: ${{ steps.app-token.outputs.token }}
1825

1926
- name: Fetch the latest commit information
2027
id: get-commit-info

0 commit comments

Comments
 (0)