Skip to content

fix: workflow for reporting jira issues fails to trigger #488

fix: workflow for reporting jira issues fails to trigger

fix: workflow for reporting jira issues fails to trigger #488

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 PRs titles
steps:
- name: Check PR title
uses: amannn/action-semantic-pull-request@e49f57ce06c1747542fce2243c7a98682384bc0e
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