chore(deps): bump kumahq/kuma-gui to 5eacd7de9f2b03df5e69957ab9ccddf068664176 #12539
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: auto-merge | |
concurrency: | |
cancel-in-progress: true | |
group: ${{github.workflow}}-${{github.event.pull_request.number}} | |
on: | |
pull_request: | |
types: [labeled, opened, reopened, synchronize] | |
branches: | |
- 'master' | |
- 'release-*' | |
permissions: | |
contents: read | |
jobs: | |
approve-and-auto-merge: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
if: contains(github.event.pull_request.labels.*.name, 'ci/auto-merge') | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Generate GitHub app token | |
id: github-app-token | |
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0 | |
with: | |
app-id: ${{ secrets.APP_ID }} | |
private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
- name: Approve PR | |
run: gh pr review ${{ github.event.pull_request.number }} -a -R ${{ github.repository }} | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: Enable auto-merge | |
run: gh pr merge ${{ github.event.pull_request.number }} --auto --squash -R ${{ github.repository }} | |
env: | |
GITHUB_TOKEN: ${{ steps.github-app-token.outputs.token }} |