Problem
The dependency-audit workflow can only be triggered by push/PR/schedule. There's no Run workflow button in the GitHub UI because workflow_dispatch is missing from the trigger list.
Expected
Add workflow_dispatch: so the audit can be run on-demand from the Actions tab.
Fix
One-line change to .github/workflows/dependency-audit.yml — add workflow_dispatch: to the on: block.
Problem
The dependency-audit workflow can only be triggered by push/PR/schedule. There's no Run workflow button in the GitHub UI because
workflow_dispatchis missing from the trigger list.Expected
Add
workflow_dispatch:so the audit can be run on-demand from the Actions tab.Fix
One-line change to
.github/workflows/dependency-audit.yml— addworkflow_dispatch:to theon:block.