Skip to content

api-core-published #1116

api-core-published

api-core-published #1116

name: Update Requirements
on:
workflow_dispatch:
repository_dispatch:
types:
- model-core-published
- api-core-published
- library-objects-published
- db-published
schedule:
- cron: "0 1 * * 1"
push:
branches:
- develop
paths:
- "requirements/*.in"
- setup.py
jobs:
update-reqs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: update-reqs
run: |
pip install -U wheel setuptools pip-tools
git config --global user.email "[email protected]"
git config --global user.name "SweetRPG Requirement Updater"
git checkout ${{ github.head_ref || github.ref_name }}
scripts/update-requirements.sh
git add requirements/*.txt
git commit -m "Update requirements"
git push origin