Merge pull request #6727 from marc1706/ticket/17396

[ticket/17396] Use GitHub App to merge to master
This commit is contained in:
Marc Alexander 2024-09-29 11:13:59 +02:00 committed by GitHub
commit cd619d350b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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