Skip to content

Commit 64fc3c7

Browse files
committed
chore: remove pr
1 parent f27830d commit 64fc3c7

File tree

1 file changed

+12
-26
lines changed

1 file changed

+12
-26
lines changed

.github/workflows/create-pr.yml

Lines changed: 12 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -47,29 +47,15 @@ jobs:
4747

4848
- name: Create Pull Request
4949
if: env.VERSION_CHANGED == 'true' && env.PR_EXISTS == '0'
50-
uses: peter-evans/create-pull-request@v7
51-
with:
52-
token: ${{ secrets.GH_PAT }}
53-
title: "🚀 Release v${{ env.VERSION }}"
54-
body: |
55-
## 🔄 Release v${{ env.VERSION }}
56-
This PR promotes changes from `canary` to `main` for version v${{ env.VERSION }}.
57-
### 🔍 Changes Include:
58-
- Version bump to v${{ env.VERSION }}
59-
- All changes from canary branch
60-
### ✅ Pre-merge Checklist:
61-
- [ ] All tests passing
62-
- [ ] Documentation updated
63-
- [ ] Docker images built and tested
64-
> 🤖 This PR was automatically generated from the canary branch
65-
base: main
66-
branch: release/v${{ env.VERSION }}
67-
draft: true
68-
labels: |
69-
release
70-
automated pr
71-
reviewers: |
72-
siumauricio
73-
assignees: |
74-
siumauricio
75-
delete-branch: false
50+
run: |
51+
gh pr create \
52+
--title "🚀 Release v${{ env.VERSION }}" \
53+
--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" \
54+
--base main \
55+
--head canary \
56+
--draft \
57+
--label "release" --label "automated pr" \
58+
--reviewer siumauricio \
59+
--assignee siumauricio
60+
env:
61+
GH_TOKEN: ${{ secrets.GH_PAT }}

0 commit comments

Comments
 (0)