Skip to content

fix(reconciler): global score-descending pairing prevents false-positive feature deactivations #611

fix(reconciler): global score-descending pairing prevents false-positive feature deactivations

fix(reconciler): global score-descending pairing prevents false-positive feature deactivations #611

Workflow file for this run

name: PR title
on:
pull_request:
types: [opened, edited, synchronize, reopened]
permissions:
pull-requests: read
jobs:
conventional-commit:
name: Conventional Commits
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Allowed types — keep in sync with the commit-message style used
# in `git log` on main (feat, fix, chore, refactor, scan, perf, …).
types: |
feat
fix
chore
refactor
perf
docs
test
ci
build
revert
scan
requireScope: false
subjectPattern: ^(?![A-Z]).+$
subjectPatternError: |
The subject "{subject}" must start with a lowercase letter.
Example: "feat(backend): add foo" not "feat(backend): Add foo".