Skip to content

chore(deps): bump kumahq/kuma-gui to 5eacd7de9f2b03df5e69957ab9ccddf068664176 #12538

chore(deps): bump kumahq/kuma-gui to 5eacd7de9f2b03df5e69957ab9ccddf068664176

chore(deps): bump kumahq/kuma-gui to 5eacd7de9f2b03df5e69957ab9ccddf068664176 #12538

Workflow file for this run

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