8000 Accept GitHub issues numbered only 32426 or above by menkotoglou · Pull Request #519 · python/core-workflow · GitHub
[go: up one dir, main page]

Skip to content

Accept GitHub issues numbered only 32426 or above #519

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Dec 29, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update blurb error message
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
  • Loading branch information
menkotoglou and hugovk authored Dec 20, 2023
commit 5980c9ade496de9b3fa8172f49843f3de8d54be6
2 changes: 1 addition & 1 deletion blurb/blurb.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ def finish_entry():
# we see in the blurb file, which is a
# better user experience.
if key == "gh-issue" and int(value) < lowest_possible_gh_issue_number:
throw("The gh-issue number should be 32426 or above.")
throw("The gh-issue number must be 32426 or above, not a PR number.")

if key in issue_keys:
try:
Expand Down
0