summaryrefslogtreecommitdiff
path: root/scripts/pr_quality/errors.py
diff options
context:
space:
mode:
authorvarunkasyap <varunkasyap@hotmail.com>2026-04-18 21:40:26 +0530
committerJacob Walls <jacobtylerwalls@gmail.com>2026-04-19 15:05:55 +0300
commit673fa46d8063577c92cfab3a73a28e9406372e33 (patch)
tree8f9f1712a4e528b7414149ae38a9550a823c29b8 /scripts/pr_quality/errors.py
parentd3ccbde03447a615b14dafc1352fa1f4d77a9f5e (diff)
Fixed #37046 -- Allowed Ready for checkin Trac status in PR checks.
Diffstat (limited to 'scripts/pr_quality/errors.py')
-rw-r--r--scripts/pr_quality/errors.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/scripts/pr_quality/errors.py b/scripts/pr_quality/errors.py
index 8b98873f6d..cd305868ac 100644
--- a/scripts/pr_quality/errors.py
+++ b/scripts/pr_quality/errors.py
@@ -56,18 +56,17 @@ INCOMPLETE_CHECKLIST = (
INVALID_TRAC_STATUS = (
"Trac Ticket Not Ready for a Pull Request",
"The referenced ticket **ticket-{ticket_id}** is not ready for a pull request. "
- "A ticket must be in the *Accepted* stage, *assigned* status, and have no "
- "resolution.\n\n"
+ "A ticket must be in the *Accepted* or *Ready for checkin* stage, "
+ "*assigned* status, and have no resolution.\n\n"
"**Current state:** {current_state}\n\n"
"**What to do:**\n\n"
f"1. Check the ticket at {TRAC_URL}/ticket/{{ticket_id}}.\n"
"2. If *Unreviewed*, wait for a community member to accept it. "
"A ticket cannot be accepted by its reporter.\n"
- "3. If *Ready for Checkin*, there is already a solution for it.\n"
- "4. If *Someday/Maybe*, discuss on the "
+ "3. If *Someday/Maybe*, discuss on the "
f"[Django Forum]({FORUM_URL}/c/internals/5) before proceeding.\n"
- "5. If resolved or closed, it is not eligible for a PR.\n"
- "6. If not *assigned*, claim it by setting yourself as the owner.\n\n"
+ "4. If resolved or closed, it is not eligible for a PR.\n"
+ "5. If not *assigned*, claim it by setting yourself as the owner.\n\n"
f"For more information on the Django triage process see {TRIAGING_URL}.",
)