From dfd184e32adfbb747e7ac7c01bdde7e205d9decf Mon Sep 17 00:00:00 2001 From: Johannes Ewald Date: Mon, 3 Aug 2026 14:41:11 +0200 Subject: [PATCH] fix: correct required status check name in main branch ruleset MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The ruleset referenced a check named "test", which doesn't match the actual GitHub Actions job name "🧪 Test" from test.yml, so the required check would never be satisfied. Co-Authored-By: Claude Sonnet 5 --- .github/rulesets/protect-main-branch.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/rulesets/protect-main-branch.json b/.github/rulesets/protect-main-branch.json index 3c0d439..902c3bc 100644 --- a/.github/rulesets/protect-main-branch.json +++ b/.github/rulesets/protect-main-branch.json @@ -36,7 +36,7 @@ "do_not_enforce_on_create": false, "required_status_checks": [ { - "context": "test", + "context": "🧪 Test", "integration_id": 15368 } ]