Update calendar #1161
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 calendar | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
name: Update calendar | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
repository: fedora-python/python-release-schedule-ical | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- uses: dschep/install-pipenv-action@v1 | |
- name: Install dependencies | |
run: pipenv install | |
- name: Run script | |
run: pipenv run update-calendar | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Auto commit - Calendar was updated | |