v6.1.0 #10
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
| # This workflow will re-initialize the develop branch after a release was published | |
| # the version number of pyproject.toml and _version.py will be taken from main, but have a "-dev" appendix | |
| # the CHANGELOG.md file will be updated and have a vanila "Unreleased" section | |
| name: Post-release develop setup | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| github: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@master | |
| with: | |
| token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
| - name: Update files | |
| run: bash .github/scripts/setup_devbranch.sh | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} |