python-scripts/.github/workflows/checker.yml

20 lines
461 B
YAML
Raw Normal View History

2022-10-04 14:53:44 +00:00
name: Check if a PR has a valid Issue
on:
pull_request_target:
types: [ edited, synchronize, opened, reopened ]
jobs:
checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Issue Validator
uses: HarshCasper/validate-issues-over-pull-requests@v0.1.1
id: validator
with:
prbody: ${{ github.event.pull_request.body }}
prurl: ${{ github.event.pull_request.url }}