Automatically update contributors.json #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Automatically update contributors.json | |
on: | |
schedule: | |
- cron: '0 0 * * 1' # Every Monday @ 00:00 | |
# Allow manual trigger | |
workflow_dispatch: | |
jobs: | |
update-contributors: | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup Python | |
uses: actions/[email protected] | |
- name: Get contributors | |
run: "python get_developers.py" | |
- name: Copy generated contributors.json to its correct place | |
run: "mv contributors.json composeApp/src/androidMain/res/raw/contributors.json" | |
- name: Get current date | |
id: date | |
run: echo "::set-output name=date::$(date +'%m-%d-%Y')" | |
- name: Push changes | |
uses: stefanzweifel/[email protected] | |
with: | |
commit_message: "updated ${{ steps.date.outputs.date }}" |