OPS: make copyright check less chatty #414
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: 'Commit Message Check' | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
jobs: | |
check-commit-message: | |
name: Check Commit Message | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Commit Type | |
uses: gsactions/commit-message-checker@v2 | |
with: | |
pattern: '^(DEV|DOC|FMT|LOG|OPS|TFW|TST): .+$' | |
flags: 'gm' | |
error: 'Your first line has to start with a qualifier like "DEV: ". Valid qualifiers include DEV, DOC, FMT, LOG, OPS, TFW, TST' | |
excludeTitle: 'true' # optional: this excludes the title of a pull request | |
excludeDescription: 'true' # optional: this excludes the description body of a pull request | |
checkAllCommitMessages: 'true' # optional: this checks all commits associated with a pull request | |
accessToken: ${{ secrets.GITHUB_TOKEN }} # github access token is only required if checkAllCommitMessages is true |