Skip to content

Update README.md

Update README.md #15

Workflow file for this run

name: Enable Automerge
on:
pull_request_target:
types:
- opened
- reopened
- labeled
jobs:
enable-auto-merge:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'mschuwalow' && contains(github.event.pull_request.labels.*.name, 'automerge')
permissions:
contents: write
steps:
- run: gh pr merge --merge --auto "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}