From 73eb91ff510c27acf11d369d21b22fc305fe6494 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sun, 29 Mar 2026 21:24:40 +0200 Subject: [PATCH] ci: add perf prefix to PR title checker Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b09f0533527..627407566bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,8 +15,8 @@ jobs: env: TITLE: ${{ github.event.pull_request.title }} run: | - if ! echo "$TITLE" | grep -qP '^(chore|ci|docs|feat|fix|refactor|test):'; then - echo "::error::PR title must start with chore:, ci:, docs:, feat:, fix:, refactor: or test:" + if ! echo "$TITLE" | grep -qP '^(chore|ci|docs|feat|fix|perf|refactor|test):'; then + echo "::error::PR title must start with chore:, ci:, docs:, feat:, fix:, perf:, refactor: or test:" exit 1 fi