diff --git a/.github/workflows/vulnerability-scan-schedule-5x.yml b/.github/workflows/vulnerability-scan-schedule-5x.yml index 27a08dd8..717795e2 100644 --- a/.github/workflows/vulnerability-scan-schedule-5x.yml +++ b/.github/workflows/vulnerability-scan-schedule-5x.yml @@ -6,10 +6,19 @@ on: schedule: - cron: '0 22 * * 3' workflow_dispatch: + inputs: + summary: + description: 'Summary of the scheduled scan.' + required: false + default: 'Trivy CVE scan of 5.x published images.' + tag: + description: 'Tag to scan.' + required: false + default: '5.x' jobs: vulnerability-scan-schedule: name: Scan for vulnerabilities on 5.x images uses: "dpc-sdp/bay/.github/workflows/vulnerability-scan.yml@6.x" with: tag: "5.x" - summary: "Trivy CVE scan of 5.x published images." \ No newline at end of file + summary: "Trivy CVE scan of 5.x published images." diff --git a/.github/workflows/vulnerability-scan-schedule-6x.yml b/.github/workflows/vulnerability-scan-schedule-6x.yml index 835cbf6c..45be8734 100644 --- a/.github/workflows/vulnerability-scan-schedule-6x.yml +++ b/.github/workflows/vulnerability-scan-schedule-6x.yml @@ -6,6 +6,15 @@ on: schedule: - cron: '2 22 * * 3' workflow_dispatch: + inputs: + summary: + description: 'Summary of the scheduled scan.' + required: false + default: 'Trivy CVE scan of 6.x published images.' + tag: + description: 'Tag to scan.' + required: false + default: '6.x' jobs: vulnerability-scan-schedule: name: Scan for vulnerabilities on 6.x images