Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ Kevin Hierro Carrasco
Kevin J. Foley
Kian Eliasi
Kian-Meng Ang
Kim Soo
Kodi B. Arfer
Kojo Idrissa
Kostis Anagnostopoulos
Expand Down
2 changes: 2 additions & 0 deletions changelog/13638.contrib.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fixed deprecated :command:`gh pr new` command in :file:`scripts/prepare-release-pr.py`.
The script now uses :command:`gh pr create` which is compatible with GitHub CLI v2.0+.
2 changes: 1 addition & 1 deletion scripts/prepare-release-pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def prepare_release_pr(base_branch: str, is_major: bool, prerelease: str) -> Non
[
"gh",
"pr",
"new",
"create",
f"--base={base_branch}",
f"--head={release_branch}",
f"--title=Release {version}",
Expand Down
Loading