Skip to content

feat(ipa): Commit checks and IPA changelog #25

feat(ipa): Commit checks and IPA changelog

feat(ipa): Commit checks and IPA changelog #25

Workflow file for this run

name: Semantic Commit Check
on:
pull_request:
types: [opened, synchronize, reopened, edited]
jobs:
semantic-commit:
runs-on: ubuntu-latest
name: Check Semantic Commits
steps:
- name: Check PR title
uses: amannn/action-semantic-pull-request@v5
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-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 an uppercase letter and doesn't end with a period.
validateSingleCommit: false