Add release notes and fix alert after successful connection #44
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
| name: Tag Version on Merge | |
| on: | |
| pull_request: | |
| types: [closed] | |
| branches: [master] | |
| permissions: | |
| contents: write | |
| jobs: | |
| tag: | |
| name: Create Tag | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'bump/') | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Extract version and tag | |
| run: | | |
| VERSION="${{ github.event.pull_request.head.ref }}" | |
| VERSION="${VERSION#bump/}" | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git tag "$VERSION" | |
| git push origin "$VERSION" |