chore: bump amannn/action-semantic-pull-request from 335288255954904a41ddda8947c8f2c844b8bfeb to 24e6f016c1e110f5353026c0b6129a4118b9146c #255
Workflow file for this run
This file contains hidden or 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: Semantic Commit Check | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, edited] | |
| jobs: | |
| semantic-commit: | |
| runs-on: ubuntu-latest | |
| name: Check Semantic PRs titles | |
| steps: | |
| - name: Check PR title | |
| uses: amannn/action-semantic-pull-request@24e6f016c1e110f5353026c0b6129a4118b9146c | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| docs | |
| style | |
| refactor | |
| perf | |
| test | |
| build | |
| ci | |
| chore | |
| revert | |
| scopes: | | |
| ipa | |
| prod | |
| requireScope: false | |
| subjectPattern: "^[A-Za-z].+[^.]$" | |
| subjectPatternError: | | |
| The subject "{subject}" found in the pull request title "{title}" | |
| didn't match the configured pattern. Please ensure that the subject | |
| starts with a letter and doesn't end with a period. | |
| validateSingleCommit: false |