name: 'Tools: Conventional Commit' on: pull_request: branches: - 'master' - 'v5.*' types: - 'opened' - 'edited' - 'synchronize' concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number }} cancel-in-progress: true permissions: {} jobs: conventional-commit-check: runs-on: ubuntu-latest timeout-minutes: 15 permissions: contents: read pull-requests: read steps: - name: Harden the runner (Audit all outbound calls) uses: step-security/harden-runner@ab7a9404c0f3da075243ca237b5fac12c98deaa5 # v2.19.3 with: egress-policy: audit - name: Check PR title format uses: agenthunt/conventional-commit-checker-action@f1823f632e95a64547566dcd2c7da920e67117ad # v2.0.1 with: pr-title-regex: '^(feat|fix|docs|style|refactor|perf|test|chore|build|ci|revert)(\([^)]+\))?!?: .+'