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
* feat: refactor code structure for improved readability and maintainability
* feat: add GitHub workflows for release, PR title linting, and security audit
* fix: update version to 5.9.0 in package.json
* feat: add build step to testing workflow
body: `The weekly security audit found high or critical vulnerabilities in dependencies.\n\nRun \`pnpm audit\` locally to see details and \`pnpm audit --fix\` or update \`pnpm.overrides\` to resolve them.\n\nWorkflow run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}`,
93
+
labels: ['security'],
94
+
});
95
+
}
96
+
97
+
- name: ❌ Fail if high/critical vulnerabilities found
98
+
if: steps.audit_high.outcome == 'failure'
99
+
run: |
100
+
echo "High or critical vulnerabilities were found. See audit report above."
0 commit comments