From 309ebf1ae60b54d0da0f358ef2d1af0f1871df65 Mon Sep 17 00:00:00 2001 From: Jordan Partridge Date: Sun, 14 Dec 2025 06:43:07 -0700 Subject: [PATCH] chore: add Sentinel Gate workflow for certification - Add .github/workflows/gate.yml - Add Sentinel Certified badge to README - Refs synapse-sentinel/prefrontal-cortex#15 --- .github/workflows/gate.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/gate.yml b/.github/workflows/gate.yml index e69de29..e27d655 100644 --- a/.github/workflows/gate.yml +++ b/.github/workflows/gate.yml @@ -0,0 +1,20 @@ +name: Sentinel Gate + +on: + pull_request: + branches: [main, master] + push: + branches: [main, master] + +jobs: + gate: + name: 🛡️ Sentinel Gate + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Run Sentinel Gate + uses: synapse-sentinel/gate@main + with: + github-token: \${{ secrets.GITHUB_TOKEN }}