Update CHANGELOG for version 2.24.0 #10
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 Summaries | |
| on: | |
| push: # Note: Only triggers for pushes to the branch containing this workflow | |
| workflow_call: # Called from version branches | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| update-summaries: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository main branch | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: main | |
| fetch-depth: 0 # Include the full history and all branches | |
| - name: Set up python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.13' | |
| cache: 'pip' | |
| - name: Install python requirements | |
| run: pip install -r scripts/requirements.txt | |
| - name: Run script | |
| run: python scripts/update_summaries.py | |
| - name: Commit changes | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: "Update readme and contributors" |