Testing new features #101
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: "Checks PR body and payload" | |
on: | |
pull_request: | |
types: [opened, edited, ready_for_review, synchronize] | |
jobs: | |
check_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check PR | |
uses: JJ/github-pr-contains-action@releases/v12 | |
with: | |
github-token: ${{github.token}} | |
bodyContains: "[x]" | |
bodyDoesNotContain: "Delete this|your own" | |
diffContains: "" |