From 544aa2a8c6f0d2b6fd5ec5416107a6c20e9282b3 Mon Sep 17 00:00:00 2001 From: Sahil Kumar Date: Wed, 17 Jun 2026 16:02:58 +0200 Subject: [PATCH] ci(repo): trigger conventional PR title check for v9 base branch pull_request_target workflows are read from the default branch (master), not from the PR's base branch. The branches filter here was [master], so PRs targeting v9 silently skipped the conventional-PR-title and changelog-update gates (e.g. #2760, #2763). PR #2756 added v9 to the same filter on the v9 branch, but that copy is never consulted for pull_request_target. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/pr_title.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr_title.yml b/.github/workflows/pr_title.yml index 7f76decf8b..670abd70f3 100644 --- a/.github/workflows/pr_title.yml +++ b/.github/workflows/pr_title.yml @@ -7,7 +7,8 @@ on: - synchronize branches: - master - + - v9 + concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true