You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore(ci): convert hypatia-scan.yml to wrapper of standards reusable (#10)
* chore(ci): convert hypatia-scan.yml to thin wrapper of standards reusable
Replaces ~416 lines of duplicated Hypatia scan plumbing with a 29-line
wrapper calling hyperpolymath/standards/.github/workflows/hypatia-scan-reusable.yml
at SHA 2569c10e831e293f9dd6580d82a494aca039deee (standards#191 HEAD).
Behaviour-preserving: same triggers, same concurrency group, same
permissions, same secrets passthrough.
Refs standards#191.
* chore(ci): retarget hypatia-scan wrapper to standards#193 HEAD
Standards #191 was closed in favour of #193 (parallel-session implementation
with simpler API: zero inputs except runs-on). Repointing the wrapper at
#193 HEAD 97df762107501909f50bb770e9bc200b6c415600 so it picks up the merged reusable once #193 lands.
Refs standards#193.
* ci(sweep): codeql actions matrix
- Replace codeql.yml `javascript-typescript` matrix entry with
`actions` (repo has no JS/TS source). Matches the canonical fix
in rsr-template-repo#71 / mtpc#8 / thunderbird#75.
# The submission script's location in gitbot-fleet has drifted
124
-
# before (it was absent from the default branch, which exit-127'd
125
-
# every consuming repo's scan). Probe known locations rather than
126
-
# hard-coding one path, and skip gracefully if none is present.
127
-
SUBMIT_SCRIPT=""
128
-
for cand in \
129
-
"$FLEET_DIR/scripts/submit-finding.sh" \
130
-
"$FLEET_DIR/scripts/submit_finding.sh" \
131
-
"$FLEET_DIR/bin/submit-finding.sh" \
132
-
"$FLEET_DIR/submit-finding.sh"; do
133
-
if [ -f "$cand" ]; then
134
-
SUBMIT_SCRIPT="$cand"
135
-
break
136
-
fi
137
-
done
138
-
139
-
if [ -z "$SUBMIT_SCRIPT" ]; then
140
-
echo "::warning::gitbot-fleet submit-finding script not found at any known path — skipping Phase 2 learning submission (non-fatal). Findings are still uploaded as an artifact and gated below."
141
-
rm -rf "$FLEET_DIR"
142
-
exit 0
143
-
fi
144
-
145
-
# Run submission script. Pass the findings path as ABSOLUTE —
146
-
# the script cd's into its own working dir before reading the
147
-
# file, so a relative path would resolve to the wrong place.
148
-
# A submission-script failure is logged but non-fatal.
149
-
if bash "$SUBMIT_SCRIPT" "$GITHUB_WORKSPACE/hypatia-findings.json"; then
0 commit comments