- Added workflow_dispatch to audit.yml, ci-cd.yml, ci.yml, cli-level1-tests.yml, security-scanning.yml, and test.yml - Added push trigger to fix.yml (was workflow_dispatch only) - Enables manual workflow runs from Gitea UI for all CI/CD pipelines
18 lines
230 B
YAML
18 lines
230 B
YAML
name: autofix
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
fix:
|
|
runs-on: debian
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- run: npm install
|
|
|
|
- name: Auto fix vulnerabilities
|
|
run: npm audit fix || true
|