From ef1487a90b266325aabe02f9e8f65cb02a72d820 Mon Sep 17 00:00:00 2001 From: Nick Bianchi Date: Mon, 16 Mar 2026 18:00:34 +0000 Subject: [PATCH] ci: add compliance gate job for org ruleset context match Adds a standalone 'compliance' gate job so the check context matches the org-level required status check name. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/compliance-check.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compliance-check.yml b/.github/workflows/compliance-check.yml index 2af31db..b9cf402 100644 --- a/.github/workflows/compliance-check.yml +++ b/.github/workflows/compliance-check.yml @@ -6,10 +6,16 @@ on: pull_request: jobs: - compliance: + check: uses: CHITTYOS/chittyops/.github/workflows/reusable-compliance-check.yml@main with: service_name: 'chittycommand' tier: 3 check_health: true domain: 'command.chitty.cc' + + compliance: + runs-on: ubuntu-latest + needs: [check] + steps: + - run: echo "Compliance gate passed"