From 1956836cde43fdd9a3e95c2843456ae7dfe50bda Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 19 Jan 2025 10:45:12 -0600 Subject: [PATCH] refactor: update --- .github/workflows/create-pr.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 \