From 9b663907c4770626de42f2597fc84a96026f4cb8 Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Sun, 29 Mar 2026 22:25:06 +0200 Subject: [PATCH] fix: update check-pr-title to allow "WIP: " --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d2b62c7..b0ef1f8 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: steps: - run: | TITLE="${{ gitea.event.pull_request.title }}" - if ! echo "$TITLE" | grep -qE '^(feat|fix|docs|chore|ci|test|refactor|perf|build|style|revert)(\(.+\))?(!)?: .+'; then + if ! echo "$TITLE" | grep -qE '^(WIP: )?(feat|fix|docs|chore|ci|test|refactor|perf|build|style|revert)(\(.+\))?(!)?: .+'; then echo "::error::Pull Request title must follow conventional commits" exit 1 fi