Skip to content

build(deps): bump actions/download-artifact from 4 to 5 #35

build(deps): bump actions/download-artifact from 4 to 5

build(deps): bump actions/download-artifact from 4 to 5 #35

name: Conventional Commits
on:
pull_request:
types: [opened, edited, synchronize, reopened]
jobs:
conventional-commits:
runs-on: ubuntu-latest
name: Validate Conventional Commits
permissions:
pull-requests: read
statuses: write
steps:
- name: Validate PR title follows conventional commits
uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
types: |
feat
fix
docs
style
refactor
perf
test
build
ci
chore
requireScope: false
disallowScopes: |
release
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
doesn't start with an uppercase character.
wip: true
validateSingleCommit: false