Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Latest commit

 

History

History
27 lines (24 loc) · 448 Bytes

README.md

File metadata and controls

27 lines (24 loc) · 448 Bytes

trivy-gh

Usage with github actions

# .trivy-gh.yaml
github:
  token: ${GITHUB_TOKEN}
  issueRepo: ${GITHUB_REPOSITORY}
# ...
# .github/workflows/trivy-gh.yaml
name: Trivy GH
schedule:
- cron: "30 6 * * *"
jobs:
  trivy-gh:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - id: trivy-gh
      uses: airfocusio/trivy-gh-test@main
      with:
        github-token: ${{ secrets.GITHUB_TOKEN }}