Skip to content

scrape

scrape #46

Workflow file for this run

name: scrape
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
scrape:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: scrape_and_commit
run: |
python3 dig.py -urls
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "- update releases registry"
git push origin HEAD:main
git push origin HEAD:main