From 71c8be34beeb23a5ab2e35466482890bf2c48bbf Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 26 Jun 2026 21:41:10 +0000 Subject: [PATCH] chore(ci): remove temporary print-findings scaffolding from scan wrapper The print-findings job was triage scaffolding (it cat'd the uploaded hypatia-findings.json to the job log to enumerate self-scan findings without artifact download). It was marked "remove before merge" but shipped to main with #545. Restore the wrapper to its thin form: the scan job + secrets: inherit only. Findings remain available via the hypatia-scan-findings artifact uploaded by the reusable. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01V13sGvHnaeCY5A9fF2QsDm --- .github/workflows/hypatia-scan.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/hypatia-scan.yml b/.github/workflows/hypatia-scan.yml index 079abaa8..8e5e50d4 100644 --- a/.github/workflows/hypatia-scan.yml +++ b/.github/workflows/hypatia-scan.yml @@ -29,23 +29,3 @@ jobs: hypatia: uses: hyperpolymath/standards/.github/workflows/hypatia-scan-reusable.yml@e2ef79eecdd623ff631fcbf3fe0268ba4f4ce166 secrets: inherit - - # TEMPORARY (triage scaffolding — remove before merge): echo the uploaded - # findings JSON to the job log so the full self-scan finding list is - # retrievable without artifact download. Used to triage the medium-severity - # self-scan findings on claude/hypatia-scan-triage. - print-findings: - needs: hypatia - if: always() - runs-on: ubuntu-latest - timeout-minutes: 5 - steps: - - name: Download findings artifact - uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 - with: - name: hypatia-scan-findings - - name: Print findings JSON - run: | - echo "===HYPATIA-FINDINGS-BEGIN===" - cat hypatia-findings.json - echo "===HYPATIA-FINDINGS-END==="