Skip to content

cve-monitor

cve-monitor #13265

Workflow file for this run

name: cve-monitor
on:
schedule:
- cron: '5 * * * *'
workflow_dispatch:
jobs:
cve-monitor:
runs-on: ubuntu-latest
timeout-minutes: 45
environment: CI
steps:
- name: checkout the repo
uses: actions/checkout@v2
- name: install dependencies
run: |
pip3 install -r requirements.txt
- name: run scraper
run: |
python3 main.py
- name: save changes
run: |
git config --global user.email "cvelab@users.noreply.github.com"
git config --global user.name "CVEDB-BOT"
git commit --all --message "Updated by CVEDB-BOT 🤖" || echo "no changes to commit"
git push