-
-
Notifications
You must be signed in to change notification settings - Fork 59
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
Fails issue number check even with skip-issue set #468
Comments
I think it might be failing here, perhaps because it's expecting an issue number but it's a (backport) PR number? Line 112 in bf7a01b
|
But why would this be called when the |
I have a fix for this in #487. A review would be appreciated 😄 |
I just got bitten by this:
The reason seems to be that for 3.10 I added the |
After merging #487 I manually created python/cpython#98163 and got: The fix seems to work, thanks @DanielNoord! |
I created a documentation improvement PR with no issue number and with
skip-issue
set. There was no problem with bedevere on this, and I successfully merged the PR in due course. I then set back-port flags for 3.10 and 3.11; back-port PRs were duly created and correctly inherited theskip-issue
label. There were no problems with bedevere on these, either. The 3.11 back-port PR tests ran successfully and I merged it, too. The 3.10 back-port PR is where the problem occurred, though not initially. The tests for this failed due to asuspicious.py
check and, to see if this was some transient issue, I closed the PR and opened it again just to re-run the tests. At this point, bedevere failed the PR on the issue number. The problem is that the back-port PR contains the text(GH-96344)
from the original PR againstmain
; for some reason, bedevere interprets this as an invalid issue number, when it would seem that it should check for the presence ofskip-issue
first. This is the 3.10 back-port PR which shows the issue.The text was updated successfully, but these errors were encountered: