2021-09-10 12:11:35 +00:00
|
|
|
name: ✍🏻 CVE Annotate
|
|
|
|
|
|
|
|
on:
|
2021-09-11 08:23:26 +00:00
|
|
|
push:
|
2021-09-10 12:11:35 +00:00
|
|
|
branches:
|
2023-01-05 10:56:27 +00:00
|
|
|
- main
|
2023-01-15 16:05:57 +00:00
|
|
|
paths:
|
|
|
|
- 'cves/**.yaml'
|
2021-09-10 12:11:35 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-01-15 16:05:57 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2021-09-10 12:18:49 +00:00
|
|
|
|
2023-01-15 16:05:57 +00:00
|
|
|
- name: Set up Go
|
2023-03-20 06:02:51 +00:00
|
|
|
uses: actions/setup-go@v4
|
2023-01-15 16:05:57 +00:00
|
|
|
with:
|
|
|
|
go-version: 1.19
|
2022-03-06 09:01:18 +00:00
|
|
|
|
2023-01-15 16:05:57 +00:00
|
|
|
- name: cve-annotate install
|
|
|
|
run: go install -v github.com/projectdiscovery/nuclei/v2/cmd/cve-annotate@latest
|
2021-09-10 12:11:35 +00:00
|
|
|
|
|
|
|
- name: Generate CVE Annotations
|
|
|
|
id: cve-annotate
|
|
|
|
run: |
|
2022-08-27 04:25:46 +00:00
|
|
|
cve-annotate -i . -d .
|
2022-11-21 11:30:34 +00:00
|
|
|
git status -s | wc -l | xargs -I {} echo CHANGES={} >> $GITHUB_OUTPUT
|
2021-09-10 12:11:35 +00:00
|
|
|
|
|
|
|
- name: Commit files
|
2022-11-21 11:30:34 +00:00
|
|
|
if: steps.cve-annotate.outputs.CHANGES > 0
|
2021-09-10 12:11:35 +00:00
|
|
|
run: |
|
|
|
|
git config --local user.email "action@github.com"
|
|
|
|
git config --local user.name "GitHub Action"
|
2022-02-27 11:03:05 +00:00
|
|
|
git pull
|
2021-09-10 12:11:35 +00:00
|
|
|
git add cves
|
|
|
|
git commit -m "Auto Generated CVE annotations [$(date)] :robot:" -a
|
|
|
|
|
|
|
|
- name: Push changes
|
2022-11-21 11:30:34 +00:00
|
|
|
if: steps.cve-annotate.outputs.CHANGES > 0
|
2021-09-10 12:11:35 +00:00
|
|
|
uses: ad-m/github-push-action@master
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2022-03-06 09:01:18 +00:00
|
|
|
branch: ${{ github.ref }}
|