Skip to content

Commit

Permalink
Merge pull request #399 from skalenetwork/enhancement/add-issue-check
Browse files Browse the repository at this point in the history
Create issue_check.yml
  • Loading branch information
olehnikolaiev authored Nov 22, 2022
2 parents b2133af + 1307f96 commit 7c73227
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/issue_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Get linked issues
on:
pull_request:
types: [ edited, synchronize, opened, reopened ]

jobs:
check-linked-issues:
name: Check if pull request has linked issues
runs-on: ubuntu-latest
steps:
- name: Get issues
id: get-issues
uses: mondeja/pr-linked-issues-action@v2
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: PR has not linked issues
if: join(steps.get-issues.outputs.issues) == ''
run:
exit 1

0 comments on commit 7c73227

Please sign in to comment.