Skip to content

fix: update semantic release #9

fix: update semantic release

fix: update semantic release #9

Workflow file for this run

name: PR Title Check
on:
pull_request:
types: [opened, edited, synchronize, reopened]
jobs:
check-pr-title:
name: Validate PR Title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
types: |
feat
fix
docs
style
refactor
perf
test
chore
revert
ci
build
requireScope: false
subjectPattern: ^[a-z].+$
subjectPatternError: |
The subject must start with a lowercase letter and not end with a period.
Examples: 'feat: add user authentication' or 'fix: resolve memory leak'