scrape #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |