From 5e1a8b19036778bb5b6a81235c08c7e4bb3bda1f Mon Sep 17 00:00:00 2001 From: Shinrai Date: Sun, 19 Jul 2026 22:43:55 -0700 Subject: [PATCH 1/2] fix: stop overriding master-commit-audit's allowed_patterns with a stale copy Filed a false-positive audit issue (#18) against a completely normal release commit ("release: v1.1.1 - add missing build:ci script (#15)"): this repo's allowed_patterns hardcoded the release regex without the "( - .+?)?" group that permits a release title with a description, so every release commit using that (standard) format trips the audit. audit-commit-subject's own built-in default already has the correct pattern - comment the override out (matching fix-headers and slothlet's already-correct copies) so this repo inherits it instead of shadowing it with a stale hardcoded list. --- .github/workflows/master-commit-audit.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/master-commit-audit.yml b/.github/workflows/master-commit-audit.yml index ad6b2e8..44bb32a 100644 --- a/.github/workflows/master-commit-audit.yml +++ b/.github/workflows/master-commit-audit.yml @@ -48,13 +48,16 @@ jobs: uses: CLDMV/.github/.github/actions/git/jobs/audit-commit-subject@v4 with: commit_sha: ${{ github.sha }} - # Allow release commits (from the release workflow), maintenance - # commits, and standard merge commits. Customize per repo if - # your conventions differ. - allowed_patterns: | - ^release: v\d+\.\d+\.\d+( \(#\d+\))?$ - ^chore(\([^)]+\))?: .+ - ^Merge pull request #\d+ from .+ + # allowed_patterns omitted -> inherit the canonical default from + # audit-commit-subject (release/chore/merge patterns, including + # the "release: vX.Y.Z - " form). Customize only if + # this repo's conventions genuinely differ — a hardcoded copy + # here goes stale the next time the canonical default changes. + # allowed_patterns: | + # ^release: v\d+\.\d+\.\d+( - .+?)?( \(#\d+\))?$ + # ^chore(\([^)]+\))?: .+ + # ^Merge pull request #\d+ from .+ + # ^feat(\([^)]+\))?: .+ # Canonical label names from CLDMV/.github's data/github-labels.json # (note the space after each colon). Replace with names that exist # in your repo's label catalog. From 33532b695cafcd6b8814108c5b2150a02bbd0bf2 Mon Sep 17 00:00:00 2001 From: Shinrai Date: Sun, 19 Jul 2026 22:48:03 -0700 Subject: [PATCH 2/2] chore: retrigger feature-pr (next was mid-reset on first push)