CI: add workflow to create hotfix branch (#2521)

This commit is contained in:
Shankar Singh C
2023-10-10 13:15:44 +05:30
committed by GitHub
parent ec7acd1d3f
commit 67cf33d089

View File

@ -0,0 +1,38 @@
name: Create a new hotfix branch
on:
workflow_dispatch:
jobs:
create_branch:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.AUTO_RELEASE_PAT }}
- name: Check if the input is valid tag
shell: bash
run: |
if [[ ${{github.ref}} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "::notice::${{github.ref}} is a valid tag."
else
echo "::error::${{github.ref}} is not a valid tag."
exit 1
fi
- name: Create hotfix branch
shell: bash
run: |
HOTFIX_BRANCH="hotfix-${GITHUB_REF#refs/tags/v}"
if git switch --create "$HOTFIX_BRANCH"; then
git push origin "$HOTFIX_BRANCH"
echo "::notice::Created hotfix branch: $HOTFIX_BRANCH"
else
echo "::error::Failed to create hotfix branch"
exit 1
fi