This commit is contained in:
thomas chaton 2021-09-15 16:44:06 +01:00 committed by GitHub
parent 5a846d48ce
commit 86c033572d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
name: VerifyIssue
on:
pull_request:
branches: [master]
types: [edited, synchronize, opened, reopened, ready_for_review]
check_run:
jobs:
verify_linked_issue:
runs-on: ubuntu-latest
name: Ensure Pull Request has a linked issue.
if: github.event.pull_request.draft == false
steps:
- name: Verify Linked Issue
uses: hattan/verify-linked-issue-action@v1.1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}