Update Changelog #92
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 Changelog | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: 'Optional version string' | |
| required: false | |
| type: string | |
| default: '' | |
| # only run at most one instances of this workflow at a time for each branch | |
| # resp. tag. Starting a new one cancels previously running ones. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| update-changelog: | |
| runs-on: ubuntu-slim | |
| steps: | |
| # Checkout the repository | |
| - name: Checkout Repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| # Run the update script | |
| - name: Run python script | |
| uses: oscar-system/update-release-notes@v1 | |
| with: | |
| conffile: "dev/releases/config.toml" | |
| releasenotesfile: "CHANGELOG.md" | |
| version: ${{ inputs.version }} | |
| # Configure git for the PR | |
| - name: Set up git | |
| run: | | |
| git config user.name "changelog[bot]" | |
| git config user.email "changelog[bot]@users.noreply.github.com" | |
| # Commit the changes | |
| - name: Commit Changes | |
| run: | | |
| git add CHANGELOG.md | |
| git commit -m "Update changelog on $(date +'%Y-%m-%d')" || echo "Nothing to commit!" | |
| # Create a pull request | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v8 | |
| with: | |
| commit-message: "Update Changelog on $(date +'%Y-%m-%d')" | |
| branch: update-changelog | |
| title: "Update changelog" | |
| base: master |