We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf01d7a commit 667ffa6Copy full SHA for 667ffa6
1 file changed
.github/workflows/checker.yml
@@ -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