2020-08-03 10:57:44 +03:00
|
|
|
name: Update Contributors
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
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'
|
2020-08-03 10:57:44 +03:00
|
|
|
|
2021-12-06 14:50:50 +03:00
|
|
|
runs-on: ubuntu-latest
|
2020-08-03 10:57:44 +03:00
|
|
|
steps:
|
2021-11-20 01:06:56 +03:00
|
|
|
- uses: actions/checkout@v2
|
2020-08-03 10:57:44 +03:00
|
|
|
|
2021-11-20 01:06:56 +03:00
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
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
|
2022-01-14 10:53:05 +03:00
|
|
|
uses: stefanzweifel/git-auto-commit-action@v4.13.1
|
2021-11-20 01:06:56 +03:00
|
|
|
with:
|
|
|
|
commit_message: Update Contributors
|
|
|
|
file_pattern: CONTRIBUTORS.md .github/contributors.json
|