PR Comment Triggered Trivy Scan #3
This file contains 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
name: PR Comment Triggered Trivy Scan | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
trivy_scan: | |
if: github.event.issue.pull_request && github.event.comment.body == '/trivy' | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
env: | |
GH_TOKEN: ${{ github.token }} | |
steps: | |
- name: Checkout PR code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.issue.pull_request.head.ref }} | |
- name: Build K3s Image | |
run: make package-image | |
- name: On Failure, Launch Debug Session | |
uses: dereknola/action-upterm@v1.1 | |
if: ${{ failure() }} | |
with: | |
## If no one connects after 5 minutes, shut down server. | |
wait-timeout-minutes: 5 | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/trivy-action@0.20.0 | |
with: | |
image-ref: 'rancher/k3s' | |
format: 'table' | |
severity: "HIGH,CRITICAL" | |
output: "trivy-report.txt" | |
- name: Add Trivy Report to PR | |
run: gh pr comment ${{ github.event.issue.number }} -F trivy-report.txt |