chore: remove pr

This commit is contained in:
Mauricio Siu
2025-01-19 10:14:58 -06:00
parent f27830daf0
commit 64fc3c7677

View File

@@ -47,29 +47,15 @@ jobs:
- name: Create Pull Request - name: Create Pull Request
if: env.VERSION_CHANGED == 'true' && env.PR_EXISTS == '0' if: env.VERSION_CHANGED == 'true' && env.PR_EXISTS == '0'
uses: peter-evans/create-pull-request@v7 run: |
with: gh pr create \
token: ${{ secrets.GH_PAT }} --title "🚀 Release v${{ env.VERSION }}" \
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" \
body: | --base main \
## 🔄 Release v${{ env.VERSION }} --head canary \
This PR promotes changes from `canary` to `main` for version v${{ env.VERSION }}. --draft \
### 🔍 Changes Include: --label "release" --label "automated pr" \
- Version bump to v${{ env.VERSION }} --reviewer siumauricio \
- All changes from canary branch --assignee siumauricio
### ✅ Pre-merge Checklist: env:
- [ ] All tests passing GH_TOKEN: ${{ secrets.GH_PAT }}
- [ ] Documentation updated
- [ ] Docker images built and tested
> 🤖 This PR was automatically generated from the canary branch
base: main
branch: release/v${{ env.VERSION }}
draft: true
labels: |
release
automated pr
reviewers: |
siumauricio
assignees: |
siumauricio
delete-branch: false