From 008eab800db7839ec633db277351004036fb4116 Mon Sep 17 00:00:00 2001 From: Andrii Tsok Date: Sun, 19 Apr 2026 03:27:56 +0000 Subject: [PATCH] feat(pr-validate): allow `rfc` as a conventional-commit type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Consumers (e.g. mcpg-dev/source-code) open RFC PRs titled `rfc: ...` — those were failing the amannn/action-semantic-pull-request check because `rfc` wasn't in the type allowlist. Adding it keeps RFC PRs consistent with the existing type namespace (feat, fix, docs, …) without needing every consumer to opt in via custom_types. --- .github/workflows/pr-validate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr-validate.yml b/.github/workflows/pr-validate.yml index d3eb7d9..15c7d1c 100644 --- a/.github/workflows/pr-validate.yml +++ b/.github/workflows/pr-validate.yml @@ -145,6 +145,7 @@ jobs: chore revert release + rfc ${{ inputs.custom_types }} # ════════════════════════════════════════════════════════════════════════