diff --git a/.github/workflows/create-pr.yml b/.github/workflows/create-pr.yml index ddfa171e..10b10779 100644 --- a/.github/workflows/create-pr.yml +++ b/.github/workflows/create-pr.yml @@ -56,8 +56,8 @@ jobs: git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" git fetch origin main - git checkout -b release/${{ env.VERSION }} - git push origin release/${{ env.VERSION }} + git canary + git push origin canary gh pr create \ --title "🚀 Release ${{ env.VERSION }}" \ @@ -75,7 +75,7 @@ jobs: > 🤖 This PR was automatically generated by [GitHub Actions](https://github.com/actions) \ --base main \ - --head release/${{ env.VERSION }} \ + --head canary \ --draft \ --label "release" --label "automated pr" || true \ --reviewer siumauricio \