From 7c8706239dfd1e30c1114728927267fbe2f16441 Mon Sep 17 00:00:00 2001 From: Jordan Partridge Date: Thu, 2 Jul 2026 21:46:07 -0700 Subject: [PATCH] ci: retire Sentinel Gate in favor of Epic Werkflow, re-enable test CI Remove the synapse-sentinel/gate@v1 "Sentinel Gate" workflow. Coverage gating and check reporting are now handled by the Epic Werkflow GitHub App, which posts checks once repo runs go through the pipeline. Re-enable the previously disabled tests workflow (test.yml.disabled -> test.yml) as plain CI so basic test coverage is not lost during the transition. The suite was only sidelined during the Jan 2026 SQLite -> Qdrant pivot (PR #91); it runs green and hermetically today (1132 passed, 5 skipped) with no live services required. --- .github/workflows/gate.yml | 34 ------------------- .../workflows/{test.yml.disabled => test.yml} | 0 2 files changed, 34 deletions(-) delete mode 100644 .github/workflows/gate.yml rename .github/workflows/{test.yml.disabled => test.yml} (100%) diff --git a/.github/workflows/gate.yml b/.github/workflows/gate.yml deleted file mode 100644 index b43baef..0000000 --- a/.github/workflows/gate.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Sentinel Gate - -on: - push: - branches: [master] - pull_request: - branches: [master] - -jobs: - gate: - name: Sentinel Gate - runs-on: ubuntu-latest - timeout-minutes: 15 - permissions: - contents: write - checks: write - pull-requests: write - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Setup PHP with PCOV - uses: shivammathur/setup-php@v2 - with: - php-version: '8.3' - extensions: pcov, redis - coverage: pcov - - uses: synapse-sentinel/gate@v1 - with: - check: certify - coverage-threshold: 95 - auto-merge: true - merge-method: squash - github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test.yml.disabled b/.github/workflows/test.yml similarity index 100% rename from .github/workflows/test.yml.disabled rename to .github/workflows/test.yml