mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
Merge pull request #6727 from marc1706/ticket/17396
[ticket/17396] Use GitHub App to merge to master
This commit is contained in:
commit
cd619d350b
1 changed files with 7 additions and 0 deletions
7
.github/workflows/merge_3.3.x_to_master.yml
vendored
7
.github/workflows/merge_3.3.x_to_master.yml
vendored
|
@ -10,11 +10,18 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- uses: actions/create-github-app-token@v1
|
||||||
|
id: app-token
|
||||||
|
with:
|
||||||
|
app-id: ${{ vars.MERGE_MASTER_APP_ID }}
|
||||||
|
private-key: ${{ secrets.MERGE_MASTER_SECRET }}
|
||||||
|
|
||||||
- name: Checkout the repository
|
- name: Checkout the repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0 # Fetch full history for proper merging
|
fetch-depth: 0 # Fetch full history for proper merging
|
||||||
ref: 3.3.x # Checkout the 3.3.x branch
|
ref: 3.3.x # Checkout the 3.3.x branch
|
||||||
|
token: ${{ steps.app-token.outputs.token }}
|
||||||
|
|
||||||
- name: Fetch the latest commit information
|
- name: Fetch the latest commit information
|
||||||
id: get-commit-info
|
id: get-commit-info
|
||||||
|
|
Loading…
Add table
Reference in a new issue