We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04911e1 commit 4011e3eCopy full SHA for 4011e3e
run_release.py
@@ -1183,7 +1183,10 @@ def _push_to_upstream(dry_run: bool = False) -> None:
1183
"Does these operations look reasonable? ⚠️⚠️⚠️ Answering 'yes' will push to the upstream repository ⚠️⚠️⚠️"
1184
):
1185
raise ReleaseException("Something is wrong - Push to upstream aborted")
1186
- if not ask_question("Is the target branch unprotected for your user?"):
+ if not ask_question(
1187
+ "Is the target branch unprotected for your user? "
1188
+ "Check at https://github.com/python/cpython/settings/branches"
1189
+ ):
1190
raise ReleaseException("The target branch is not unprotected for your user")
1191
_push_to_upstream(dry_run=False)
1192
0 commit comments