From a736704bf937268b3ae3dafaad44596798888608 Mon Sep 17 00:00:00 2001 From: arencro <109680198+arencro@users.noreply.github.com> Date: Fri, 12 Jan 2024 12:05:04 -0600 Subject: [PATCH] Adding additional Prodsec workflow files --- .github/workflows/cve2epss.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/cve2epss.yml diff --git a/.github/workflows/cve2epss.yml b/.github/workflows/cve2epss.yml new file mode 100644 index 0000000..7b0ec9a --- /dev/null +++ b/.github/workflows/cve2epss.yml @@ -0,0 +1,21 @@ +# CVE2EPSS Alert Parser +# Tool to open and close Dependabot alerts based on EPSS score +--- +name: CVE2EPSS + +'on': + workflow_dispatch: + schedule: + - cron: '0 0 * * 0' + +jobs: + cve2epss: + runs-on: ubuntu-latest + + steps: + - name: CVE2EPSS + uses: HealthByRo/prodsec-tools/actions/cve2Epss@main + with: + TOKEN: ${{ secrets.GHAS_GITHUB_TOKEN }} + EPSS_SCORE: '0.003' + REPO: ${{ github.repository }} \ No newline at end of file