Skip to content

Add GitHub Sponsors funding and polish README #7

Add GitHub Sponsors funding and polish README

Add GitHub Sponsors funding and polish README #7

Workflow file for this run

# 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'