A GitHub Action that verifies your pull request contains a reference to a ticket. You can use this to (optionally) check:
- The PR title contains
[VC-1234]
- The branch name contains
VC-1234
orVC_1234
- Each commit contains
[VC-1234]
Add .github/workflows/jiracheck.yml
with the following:
name: PR Lint
on: [pull_request]
jobs:
pr_lint:
runs-on: ubuntu-latest
steps:
- uses: Logitech/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Configure by creating a .github/jira_config.yml
file:
For example:
tickets: ['VC', 'JIRA']
check_title: true
check_branch: true
check_commits: true
ignore_case: true
Run jest test
or npm test
to test:
PASS ./index.test.js
pr-lint-action
✓ fails if check_title is true and title does not match (180ms)
✓ passes if check_title is false and title does not match (66ms)
✓ passes if check_title is true and title matches (67ms)
✓ fails if check_branch is true and branch does not match (66ms)
✓ passes if check_branch is false and branch does not match (61ms)
✓ passes if check_branch is true and branch matches (64ms)
✓ passes if check_commits is true and all commits match (66ms)
✓ fails if check_commits is true and some commits do not match (59ms)
✓ passes if check_commits is false and all commits match (61ms)
✓ passes if check_commits is false and some commits do not match (62ms)
✓ fails if check_branch and check_title is true and title does not match (59ms)
✓ fails if check_branch and check_title is true and title does not match (63ms)
✓ passes if check_branch and check_title is true and both match (61ms)
✓ passes if ignore_case and lower case title/branch (58ms)
✓ passes if ignore_case and lower case commits (65ms)
✓ fails if not ignore_case and lower case title/branch (66ms)
If you have other things worth automatically checking for in your PRs, please submit a pull request.