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

38 lines
995 B
YAML
Raw Normal View History

name: Update Contributors
on:
push:
branches:
- master
permissions:
contents: read
jobs:
build:
2021-12-06 14:50:50 +03:00
# Disables this workflow from running in a repository that is not part of the indicated organization/user
if: github.repository_owner == 'cookiecutter'
permissions:
contents: write # for stefanzweifel/git-auto-commit-action to push code in repo
2021-12-06 14:50:50 +03:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2021-11-20 01:06:56 +03:00
- name: Set up Python
uses: actions/setup-python@v3
2021-11-20 01:06:56 +03:00
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Update list
run: python scripts/update_contributors.py
2020-08-10 20:09:03 +03:00
2021-11-20 01:06:56 +03:00
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4.14.1
2021-11-20 01:06:56 +03:00
with:
commit_message: Update Contributors
file_pattern: CONTRIBUTORS.md .github/contributors.json