Merge pull request #78 from scala-steward/update/de.tobiasroeser.mill… #90
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: Regenerate Readme (on new tags) | |
on: | |
push: | |
branches: [ main ] | |
tags: ["*"] | |
concurrency: | |
group: readme-gen | |
cancel-in-progress: true | |
jobs: | |
regenerate-readme: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Sleep for 20 minutes while repository metadata is updated | |
run: sleep 20m | |
shell: bash | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Generate Readme from template | |
run: | | |
chmod +x ./scripts/updateReadme.sh | |
./scripts/updateReadme.sh | |
- name: Add and Commit file | |
uses: EndBug/add-and-commit@v9 | |
with: | |
default_author: github_actions | |
message: 'Update library versions on Readme' | |
push: origin HEAD:main |