Skip to content

Fix IOR tracing bug #440

Fix IOR tracing bug

Fix IOR tracing bug #440

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