chore(deps): bump kumahq/kuma-gui to 1f3222f9cdd7b9a769986103b6d9942086f09726 #8752
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@a0de6af83968303c8c955486bf9739a57d23c7f1 # v1.10.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 }} |