Add GitHub Sponsors funding and polish README #7
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
| # VulnHawk Security Scan - runs on initial push to main AND on every PR | |
| name: VulnHawk Security Scan | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| permissions: | |
| security-events: write | |
| contents: read | |
| jobs: | |
| security-scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run VulnHawk | |
| uses: momenbasel/vulnhawk@main | |
| with: | |
| target: '.' | |
| backend: 'claude-code' | |
| mode: 'full' | |
| severity: 'medium' | |
| claude-code-oauth-token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} | |
| fail-on-findings: 'true' |