chore: add PR title check #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint-pr-title | |
on: | |
pull_request: | |
types: [opened, edited, reopened, synchronize] | |
jobs: | |
pr-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: morrisoncole/[email protected] | |
with: | |
# Note: if you have branch protection rules enabled, the `GITHUB_TOKEN` permissions | |
# won't cover dismissing reviews. Your options are to pass in a custom token | |
# (perhaps by creating some sort of 'service' user and creating a personal access | |
# token with the correct permissions) or to turn off `on-failed-regex-request-changes` | |
# and use action failure to prevent merges instead (with | |
# `on-failed-regex-fail-action: true`). See: | |
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token | |
# https://docs.github.com/en/rest/pulls/reviews#dismiss-a-review-for-a-pull-request | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
title-regex: '^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test){1}(\([\w\-\.]+\))?(!)?: ([\w ])+([\s\S]*)' | |
on-failed-regex-fail-action: true | |
on-failed-regex-create-review: false | |
on-failed-regex-request-changes: false |