Bump PyPI requirements #1042
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: Bump PyPI requirements | |
on: | |
schedule: | |
- cron: '53 8 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: get up on this | |
uses: actions/checkout@v2 | |
with: | |
ref: develop | |
- name: hit it | |
run: ./mk/reqs.sh | |
- name: push it | |
run: | | |
git config --global user.name 'GitHub Actions' | |
git config --global user.email '[email protected]' | |
git commit -am 'Bump PyPI requirements [Automated]' && git push || true |