Add a file to .github/workflows
with similar contents to:
name: "Block @nocommit Merges"
on: [pull_request]
jobs:
check_pr:
runs-on: ubuntu-latest
steps:
- name: Check for @nocommit
uses: itsvs/no-merge-action@releases/v0.2
with:
github-token: ${{github.token}}
keyword: "@nocommit"
The keyword
variable is the string that we don't want the PR to include.
Use issues!
This is a modification of the original template, and is released under the MIT license.