From 67cf33d0894f337839bb35b2a87d3807085e6672 Mon Sep 17 00:00:00 2001 From: Shankar Singh C <83439957+ShankarSinghC@users.noreply.github.com> Date: Tue, 10 Oct 2023 13:15:44 +0530 Subject: [PATCH] CI: add workflow to create hotfix branch (#2521) --- .github/workflows/hotfix-branch-creation.yml | 38 ++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/hotfix-branch-creation.yml diff --git a/.github/workflows/hotfix-branch-creation.yml b/.github/workflows/hotfix-branch-creation.yml new file mode 100644 index 000000000000..ced5880faf76 --- /dev/null +++ b/.github/workflows/hotfix-branch-creation.yml @@ -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 \ No newline at end of file