Update Requirements #93
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 Requirements | |
on: | |
workflow_dispatch: | |
repository_dispatch: | |
types: [] | |
schedule: | |
- cron: "15 2 * * 0" | |
push: | |
branches: [develop] | |
paths: | |
- "requirements/**" | |
jobs: | |
update-reqs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: update-reqs | |
run: | | |
pip install -U wheel | |
pip install -U setuptools | |
python -m pip install -U pip-tools | |
git config --global user.email "[email protected]" | |
git config --global user.name "Pilgrimage Requirement Updater" | |
git checkout develop | |
scripts/update-requirements.sh | |
git add requirements/*.txt | |
git commit -m "Update requirements" | |
git push origin |