Skip to content

Add release notes and fix alert after successful connection #44

Add release notes and fix alert after successful connection

Add release notes and fix alert after successful connection #44

Workflow file for this run

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"