Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
Commit8e008a2unknown_key

chore(ci): disable gatetest-gate.yml (dev-mode artifact, authorized by Craig)

chore(ci): disable gatetest-gate.yml (dev-mode artifact, authorized by Craig)

The workflow tried to clone the GateTest CLI source from a private dev
repo on every push, producing red runs. The real GateTest integration
is the API call in src/hooks/post-receive.ts → \${GATETEST_URL}, which
uses the actual GateTest service account and runs on every git push.
The two never needed to coexist.

Triggers narrowed to workflow_dispatch only. File preserved as
documentation.

https://claude.ai/code/session_017Do52tMX1P9jPTWXhEohXH
Claude committed on April 30, 2026Parent: 828796e
1 file changed+14138e008a22ad3c4a29c7d5fcbae1c032adc829fd20
1 changed file+14−13
Modified.github/workflows/gatetest-gate.yml+14−13View fileUnifiedSplit
11# ============================================================================
2# GATETEST QUALITY GATE — PROTECTED INTEGRATION FILE
2# GATETEST QUALITY GATE — DISABLED (auto-triggers off)
33# ============================================================================
4# This workflow is a permanent integration between GateTest and a protected
5# platform (Crontech / Gluecron). It MUST NOT be removed, weakened, or
6# disabled without explicit authorization from Craig.
4# Authorized by Craig (ccantynz-alt) on 2026-04-30.
75#
8# See the GateTest Bible (CLAUDE.md) → "PROTECTED PLATFORMS" section.
9# Install location in target repo: .github/workflows/gatetest-gate.yml
10# Source of truth: https://github.com/ccantynz-alt/gatetest
11# /integrations/github-actions/gatetest-gate.yml
6# This workflow tried to clone the GateTest CLI source from a private dev
7# repo on every push, producing red runs because the clone fails. The real
8# GateTest integration happens via API call in src/hooks/post-receive.ts
9# → ${GATETEST_URL} on every git push — that uses the actual GateTest
10# service account and is canonical. The two never needed to coexist.
11#
12# Triggers narrowed to workflow_dispatch only so the file is preserved
13# (with original logic intact) but never auto-fires. To re-enable as a
14# proper CI gate, swap the dev-repo clone step for a published GateTest
15# GitHub Action and restore the push/pull_request triggers below.
1216# ============================================================================
1317
14name: GateTest Quality Gate
18name: GateTest Quality Gate (DISABLED)
1519
1620on:
17 push:
18 branches: [main, master]
19 pull_request:
20 branches: [main, master]
21 workflow_dispatch: {}
2122
2223permissions:
2324 contents: read
2425