Skip to content

breaking: drop support for Python 3.8 [CONTXT-9166] #564

breaking: drop support for Python 3.8 [CONTXT-9166]

breaking: drop support for Python 3.8 [CONTXT-9166] #564

Workflow file for this run

name: Automerge
on:
pull_request:
types: [opened, synchronize, labeled, reopened]
permissions:
contents: write
pull-requests: write
jobs:
pr:
if: contains(github.event.pull_request.labels.*.name, 'automerge')
runs-on: ubuntu-latest
steps:
- name: Merge PR
run: |
gh pr merge --auto --squash --body="[ci skip]" "$PR_URL"
gh pr review --approve "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}