From 01091ccf69f4c11b7db2c3403d75fe5b4774c43c Mon Sep 17 00:00:00 2001 From: Salvydas Lukosius Date: Fri, 29 May 2026 12:46:24 +0100 Subject: [PATCH] ci(trunk): rename workflow/job to Trunk Code Quality to fix duplicate check context The workflow and job were both named 'Trunk Check', colliding with the check that trunk-io/trunk-action posts (also 'Trunk Check'). Two identically-named check-runs confuse strict branch protection (required context 'Trunk Check'), leaving PRs stuck in BLOCKED even when all checks pass. Renaming to the org-conventional 'Trunk Code Quality' (matching other repos) leaves the action's 'Trunk Check' as the sole required context. Fixes #757. --- .github/workflows/trunk-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/trunk-check.yml b/.github/workflows/trunk-check.yml index 45a76f53..675ae3c2 100644 --- a/.github/workflows/trunk-check.yml +++ b/.github/workflows/trunk-check.yml @@ -1,5 +1,5 @@ --- -name: Trunk Check +name: Trunk Code Quality on: push: branches: [main, next] @@ -21,7 +21,7 @@ concurrency: jobs: trunk_check: - name: Trunk Check + name: Trunk Code Quality runs-on: ubuntu-latest steps: - name: Checkout