This repository has been archived by the owner on Jan 11, 2024. It is now read-only.
Update Research Contributions #4
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: "Update Research Contributions" | |
on: | |
schedule: | |
- cron: '0 0 * * 0' # every Sunday at midnight | |
workflow_dispatch: # allow manual triggers | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout repository" | |
uses: actions/checkout@v2 | |
- name: "Scrape RSS feeds and generates files in '_data'" | |
run: | | |
python scripts/contributions.py | |
- name: "Commit changes" | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "Update contributions" |