feat(ci): add weekly audit watcher for scoped-gate revert - #139
Merged
Conversation
The Dependabot alert for GHSA-mh99-v99m-4gvg was auto-dismissed (dev-scoped), so no security-update PR will announce a brace-expansion 1.x backport, and version updates don't touch lockfile-only transitive deps. Nothing signals when the full tree is clean again. Add an audit-full Makefile target (full-tree npm audit) and a weekly scheduled workflow that runs it non-gating and comments on #138 once it passes, so the --omit=dev gate scoping gets reverted promptly. Delete both with the revert. Refs #138 Assisted-by: ClaudeCode:claude-fable-5 Signed-off-by: Ronny Trommer <ronny@no42.org>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Refs #138 (intentionally not closing — the issue closes with the gate revert).
The Dependabot alert for GHSA-mh99-v99m-4gvg was auto-dismissed (dev-scoped), so no security-update PR will fire when a brace-expansion 1.x backport ships, and Dependabot version updates don't touch lockfile-only transitive deps. Without a watcher, nothing announces that the
--omit=devgate scoping (#137) can be reverted.This adds:
make audit-full— full-treenpm audit --audit-level=high(the pre-fix(ci): scope npm audit gate to production dependencies #137 gate, kept runnable).github/workflows/audit-watch.yml— weekly cron (Mon 05:37 UTC) +workflow_dispatch; runsmake audit-fullnon-gating and comments on Revert npm audit gate to full tree once GHSA-mh99-v99m-4gvg is fixable in the dev tree #138 the first time it's clean, repeating weekly until the revert lands. The revert deletes this workflow and the target.Verification:
make audit-fullfails locally as expected while the advisory is live;make auditstill green;actionlintpasses on the new workflow. Post-merge I'll trigger aworkflow_dispatchrun to confirm the no-comment path (audit red → job green, no comment).🤖 Generated with Claude Code