Release 3.2.0 #14
Workflow file for this run
This file contains hidden or 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: Update supporters | |
| on: | |
| push: | |
| paths: | |
| - docs/data/sponsors.yaml | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| update-readme: | |
| name: Update README.md | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Render supporters list | |
| run: python3 .github/scripts/render_supporters.py | |
| - name: Commit updated supporters list | |
| run: | | |
| if git diff --quiet -- README.md; then | |
| exit 0 | |
| fi | |
| git config user.name "keen-pbr-supporters-bot" | |
| git config user.email "keen-pbr-supporters-bot@users.noreply.github.com" | |
| git add README.md | |
| git commit -m "Update supporters list" | |
| git push |