Merge branch 'main' into next #13
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 runs after a pull request is merged into the 'next' branch. | |
| ## It bumps the minor version and creates a new Git tag. | |
| name: PR Next Post-Merge Minor Version Bump | |
| on: | |
| push: | |
| branches: [next] | |
| jobs: | |
| bump-minor-version: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| packages: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Bump minor version and tag | |
| run: bash .github/scripts/bump-version-minor.sh |