Skip to content

chore(ci): Readme with GIF and more CI fixes #17

chore(ci): Readme with GIF and more CI fixes

chore(ci): Readme with GIF and more CI fixes #17

Workflow file for this run

name: Conventional Commit Check
on:
pull_request_target:
types:
- opened
- edited
- synchronize
- reopened
jobs:
check-commits:
name: Check Conventional Commits
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Check PR Title
uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5.5.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
types: |
fix
feat
docs
style
refactor
perf
test
build
ci
chore
revert
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 an uppercase character.
validateSingleCommit: true