From 498678c4ae3ac6b5ca567a7d566286f1affd4a2a Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 19 Jan 2025 10:21:30 -0600 Subject: [PATCH] Revert "refactor: update" This reverts commit 3d602c232db56200a2c1f2d12962c15396f76a32. --- .github/workflows/create-pr.yml | 35 +++++++++++---------------------- 1 file changed, 11 insertions(+), 24 deletions(-) diff --git a/.github/workflows/create-pr.yml b/.github/workflows/create-pr.yml index fdbc800b0..3b8afa183 100644 --- a/.github/workflows/create-pr.yml +++ b/.github/workflows/create-pr.yml @@ -47,27 +47,14 @@ jobs: - name: Create Pull Request if: env.VERSION_CHANGED == 'true' && env.PR_EXISTS == '0' - uses: peter-evans/create-pull-request@v7 - with: - token: ${{ secrets.GH_PAT }} - title: "🚀 Release ${{ env.VERSION }}" - body: | - ## 🔄 Release ${{ env.VERSION }} - - This PR promotes changes from `canary` to `main` for version ${{ env.VERSION }}. - - ### 🔍 Changes Include: - - Version bump to ${{ env.VERSION }} - - All changes from canary branch - - ### ✅ Pre-merge Checklist: - - [ ] All tests passing - - [ ] Documentation updated - - [ ] Docker images built and tested - - > 🤖 This PR was automatically generated from the canary branch - base: main - branch: canary - draft: true - assignees: siumauricio - reviewers: siumauricio + run: | + gh pr create \ + --title "🚀 Release v${{ env.VERSION }}" \ + --body "## 🔄 Release v${{ env.VERSION }}\n\nThis PR promotes changes from \`canary\` to \`main\` for version v${{ env.VERSION }}.\n\n### 🔍 Changes Include:\n- Version bump to v${{ env.VERSION }}\n- All changes from canary branch\n\n### ✅ Pre-merge Checklist:\n- [ ] All tests passing\n- [ ] Documentation updated\n- [ ] Docker images built and tested\n\n> 🤖 This PR was automatically generated from the canary branch" \ + --base main \ + --head canary \ + --draft \ + --reviewer siumauricio \ + --assignee siumauricio + env: + GH_TOKEN: ${{ secrets.GH_PAT }}