| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A GitHub action that checks that a PR title matches a regex patter.
Could be used for:
This is intended to be used with the Autosquash action so that squashed commit messages follow a convention.
name: 'Jira Check'
on:
pull_request:
types:
# Check title when opened.
- opened
# Check title when new commits are pushed.
# Required to use as a status check.
- synchronize
jobs:
publish:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: dylanvann/check-pull-request-title@v1
with:
# Match pull request titles in the form UI-1234 - Message.
pattern: '^UI-\d* - '| Back | FazBrowse Home | New Git URL |