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
|
2024-09-05 22:24:46 +03:00
|
|
|
- name: Install uv
|
2024-10-07 08:13:01 +03:00
|
|
|
uses: astral-sh/setup-uv@v3
|
2024-09-05 22:24:46 +03:00
|
|
|
with:
|
|
|
|
enable-cache: "true"
|
2021-11-20 01:06:56 +03:00
|
|
|
- name: Update list
|
2024-09-19 11:49:05 +03:00
|
|
|
run: uv run --frozen 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
|
2024-04-16 15:56:46 +03:00
|
|
|
uses: stefanzweifel/git-auto-commit-action@v5.0.1
|
2021-11-20 01:06:56 +03:00
|
|
|
with:
|
|
|
|
commit_message: Update Contributors
|
|
|
|
file_pattern: CONTRIBUTORS.md .github/contributors.json
|