From af4ecf331f3285ea79672c7f0c27b99855dabd84 Mon Sep 17 00:00:00 2001 From: Denis Golovin Date: Wed, 17 May 2023 00:30:59 -0700 Subject: [PATCH] Remove step to create PR to update version to next one Signed-off-by: Denis Golovin --- .github/workflows/release.yaml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1a980b9..c3fe1b6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -74,30 +74,6 @@ jobs: name: ${{ steps.TAG_UTIL.outputs.githubTag }} draft: true prerelease: false - - name: Create the PR to bump the version in the main branch (only if we're tagging from main branch) - if: ${{ github.event.inputs.branch == 'main' }} - run: | - git config --local user.name ${{ github.actor }} - git config --local user.email "devtools-team@redhat.com" - CURRENT_VERSION=$(echo "${{ steps.TAG_UTIL.outputs.extVersion }}") - tmp=${CURRENT_VERSION%.*} - minor=${tmp#*.} - bumpedVersion=${CURRENT_VERSION%%.*}.$((minor + 1)).0 - bumpedBranchName="bump-to-${bumpedVersion}" - git checkout -b "${bumpedBranchName}" - sed -i "s#version\":\ \"\(.*\)\",#version\":\ \"${bumpedVersion}-next\",#g" package.json - git add package.json - git commit -s --amend -m "chore: bump version to ${bumpedVersion}" - git push origin "${bumpedBranchName}" - echo -e "📢 Bump version to ${bumpedVersion}\n\n${{ steps.TAG_UTIL.outputs.extVersion }} has been released.\n\n Time to switch to the new ${bumpedVersion} version 🥳" > /tmp/pr-title - pullRequestUrl=$(gh pr create --title "chore: 📢 Bump version to ${bumpedVersion}" --body-file /tmp/pr-title --head "${bumpedBranchName}" --base "main") - echo "📢 Pull request created: ${pullRequestUrl}" - echo "➡️ Flag the PR as being ready for review" - gh pr ready "${pullRequestUrl}" - echo "🔅 Mark the PR as being ok to be merged automatically" - gh pr merge "${pullRequestUrl}" --auto --rebase - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} build: needs: [tag]