2020-08-03 10:57:44 +03:00
|
|
|
name: Update Contributors
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
2022-05-07 15:49:24 +03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-08-03 10:57:44 +03:00
|
|
|
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'
|
2022-05-07 15:49:24 +03:00
|
|
|
permissions:
|
2023-04-15 14:15:15 +03:00
|
|
|
contents: write # for stefanzweifel/git-auto-commit-action to push code in repo
|
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:
|
2023-09-06 22:40:35 +03:00
|
|
|
- uses: actions/checkout@v4
|
2020-08-03 10:57:44 +03:00
|
|
|
|
2021-11-20 01:06:56 +03:00
|
|
|
- name: Set up Python
|
2023-12-07 12:20:42 +03:00
|
|
|
uses: actions/setup-python@v5
|
2021-11-20 01:06:56 +03:00
|
|
|
with:
|
2023-04-15 13:42:33 +03:00
|
|
|
python-version: "3.11"
|
2021-11-20 01:06:56 +03:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements.txt
|
|
|
|
- name: Update list
|
|
|
|
run: python scripts/update_contributors.py
|
2022-12-14 00:35:25 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2020-08-10 20:09:03 +03:00
|
|
|
|
2021-11-20 01:06:56 +03:00
|
|
|
- name: Commit changes
|
2023-10-09 08:21:55 +03:00
|
|
|
uses: stefanzweifel/git-auto-commit-action@v5.0.0
|
2021-11-20 01:06:56 +03:00
|
|
|
with:
|
|
|
|
commit_message: Update Contributors
|
|
|
|
file_pattern: CONTRIBUTORS.md .github/contributors.json
|