Skip to content

v6.1.0

v6.1.0 #10

# 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 }}