Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/prepare-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,19 +64,18 @@ jobs:

- name: Create draft PR
run: |
RELEASE_CHECKLIST_URL="$(gh issue list --label 'c: release' --state open --limit 1 --json url --jq '.[0].url // "TODO add link to issue"')"
gh pr create \
--base $GITHUB_REF_NAME \
--head $RELEASE_BRANCH \
--draft \
--title "chore(release): $RELEASE_VERSION" \
--body "
Release for $RELEASE_VERSION
--body "Release for $RELEASE_VERSION

- [ ] Completed manual changes/tasks for this release
- [ ] Completed manual changes/tasks for this release

---
---

- Checklist: TODO add link to issue
"
- Checklist: $RELEASE_CHECKLIST_URL"
Comment on lines +75 to +79
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please retain the original indentation here, as it gets reflected in the final PR description.

Suggested change
- [ ] Completed manual changes/tasks for this release
---
---
- Checklist: TODO add link to issue
"
- Checklist: $RELEASE_CHECKLIST_URL"
- [ ] Completed manual changes/tasks for this release
---
- Checklist: $RELEASE_CHECKLIST_URL
"

env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
Loading