Skip to content

Commit 667ffa6

Browse files
authored
Create checker.yml
1 parent cf01d7a commit 667ffa6

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/checker.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Check if a PR has a valid Issue
2+
3+
on:
4+
pull_request_target:
5+
types: [ edited, synchronize, opened, reopened ]
6+
7+
jobs:
8+
checker:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
14+
- name: Issue Validator
15+
uses: HarshCasper/validate-issues-over-pull-requests@v0.1.1
16+
id: validator
17+
with:
18+
prbody: ${{ github.event.pull_request.body }}
19+
prurl: ${{ github.event.pull_request.url }}

0 commit comments

Comments
 (0)