From 4924e66d434a5ed54d067b539b234e59e3899b5f Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Wed, 1 Jul 2026 17:40:48 +0300 Subject: [PATCH] fix: allow branch names starting with create-pull-request/ Add allow_branch_names to commit-check.toml so that branches created by actions like peter-evans/create-pull-request (e.g., create-pull-request/patch) pass the conventional branch validation. Closes #225 --- commit-check.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/commit-check.toml b/commit-check.toml index 667d98e..2dabd92 100644 --- a/commit-check.toml +++ b/commit-check.toml @@ -2,3 +2,4 @@ inherit_from = "github:commit-check/.github:commit-check.toml" [branch] require_rebase_target = "origin/main" +allow_branch_names = ["create-pull-request/.+"]