Skip to content

Updating README

Updating README #2

Workflow file for this run

name: automerge
on:
pull_request:
types:
- opened
- ready_for_review
- reopened
jobs:
automerge:
runs-on: ubuntu-latest
steps:
- name: Enable auto-merge for PRs
if: ${{ !github.event.pull_request.draft && !github.event.pull_request.auto_merge }}
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: "${{ github.event.pull_request.html_url }}"
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"