From 05668f9d87d53f87f9d2bd6d1960095b79dda521 Mon Sep 17 00:00:00 2001 From: Lien Chen Date: Fri, 15 May 2026 22:51:51 +0900 Subject: [PATCH] ci(cc024+cc029): add test-usage-weekly + test-codex-dispatch jobs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Append two new lint.yml jobs following the existing 6-job pattern (ubuntu-latest, actions/checkout@v6, single run step). Both target scripts pass locally (20/20 and 13/13) and are fixture-driven with mktemp-isolated state — no fixture work needed. Closes CC-024 and CC-029. NOTE: not pushing yet — work paused to investigate hook-codex-bash-guard agent_type leakage and main-thread release regression first. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/lint.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b709208..d524494 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -47,3 +47,17 @@ jobs: - uses: actions/checkout@v6 - name: install/uninstall regression suite run: CLAUDE_CONFIG_TEST_PREFLIGHT_HOME="$HOME" ./scripts/test-install.sh + + test-usage-weekly: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - name: usage-weekly regression suite + run: ./scripts/test-usage-weekly.sh + + test-codex-dispatch: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - name: codex-dispatch regression suite + run: ./scripts/test-codex-dispatch.sh