From 36e17b7e055ece9386bbf525dfc97d080e65d5cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Mikul=C3=A1=C5=A1ek?= Date: Wed, 11 Feb 2026 17:19:43 +0100 Subject: [PATCH] feat(commit-lint): allow reapply commits --- .github/workflows/commit-lint-shell.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/commit-lint-shell.yaml b/.github/workflows/commit-lint-shell.yaml index 893cafb..62c9dec 100644 --- a/.github/workflows/commit-lint-shell.yaml +++ b/.github/workflows/commit-lint-shell.yaml @@ -36,7 +36,7 @@ jobs: # Validate commits against Conventional Commits guidelines and internal rules # Define conventional commit regex with optional breaking change mark - CONVENTIONAL_REGEX="^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\(.+\))?!?: .{1,70}" + CONVENTIONAL_REGEX="^(build|chore|ci|docs|feat|fix|perf|refactor|revert|reapply|style|test)(\(.+\))?!?: .{1,70}" # Get commit subjects and hashes COMMITS=$(git log --reverse --no-merges --pretty=format:"%h %s" ${{ steps.set_commit_range.outputs.commit_range }})