Remove py2 (final!) #309
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
# Check that the commit messages are between 20 and 150 chars, | |
# and that they follow the rule | |
# <type> (<scope>): <subject> | |
# type: docs, feat, fix, refactor, style or test | |
# scope (optional): any extra info | |
name: 'Commit Message Check' | |
on: pull_request | |
jobs: | |
check-commit-message: | |
name: Check Commit Message | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Commit Format | |
uses: gsactions/commit-message-checker@v1 | |
with: | |
pattern: '^(docs|feat|fix|refactor|style|test)( ?\(.*\))?: .+$' | |
excludeDescription: 'true' # optional: this excludes the description body of a pull request | |
excludeTitle: 'true' # optional: this excludes the title 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 | |
flags: 'gm' | |
error: 'Your commit has to follow the format "<type>(<scope>): <subject>"".' | |
- name: Check Commit Length | |
uses: gsactions/commit-message-checker@v1 | |
with: | |
pattern: '^.{20,150}$' | |
error: 'Commit messages should be between 20 and 150 chars' | |
excludeDescription: 'true' # optional: this excludes the description body of a pull request | |
excludeTitle: 'true' # optional: this excludes the title 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 |