cookiecutter-django/.github/workflows/update-contributors.yml

31 lines
665 B
YAML
Raw Normal View History

name: Update Contributors
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Update list
2020-08-10 19:56:26 +03:00
run: python scripts/update_contributors.py
2020-08-10 20:09:03 +03:00
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4.8.0
2020-08-10 20:09:03 +03:00
with:
commit_message: Update Contributors
2020-08-10 20:13:42 +03:00
file_pattern: CONTRIBUTORS.md .github/contributors.json