status correction
This commit is contained in:
+18
-18
@@ -93,30 +93,30 @@ log = logging.getLogger(__name__)
|
|||||||
# Based on your Jira Apollo board: To Do | In Progress | Completed | Paused
|
# Based on your Jira Apollo board: To Do | In Progress | Completed | Paused
|
||||||
JIRA_TO_JOTTY_STATUS: dict[str, str] = {
|
JIRA_TO_JOTTY_STATUS: dict[str, str] = {
|
||||||
# To Do column — items waiting to be worked on
|
# To Do column — items waiting to be worked on
|
||||||
"NEW": "todo",
|
"New": "todo",
|
||||||
"WAITING": "todo",
|
"Waiting": "todo",
|
||||||
"READY": "todo",
|
"Ready": "todo",
|
||||||
"TO DO": "todo",
|
"To Do": "todo",
|
||||||
"IN REFINEMENT": "todo",
|
"In Refinement": "todo",
|
||||||
|
|
||||||
# In Progress column — active work in flight
|
# In Progress column — active work in flight
|
||||||
"IN BUSINESS DESIGN": "in_progress",
|
"In Business Design": "in_progress",
|
||||||
"PREPARATION": "in_progress",
|
"Preparation": "in_progress",
|
||||||
"IN PROGRESS": "in_progress",
|
"In Progress": "in_progress",
|
||||||
"PO REVIEW": "in_progress",
|
"PO Review": "in_progress",
|
||||||
"READY FOR QA": "in_progress",
|
"Ready for QA": "in_progress",
|
||||||
"TEST": "in_progress",
|
"Test": "in_progress",
|
||||||
"CONFIGURATION INTEGRATION": "in_progress",
|
"Configuration Integration": "in_progress",
|
||||||
|
|
||||||
# Completed column — finished work
|
# Completed column — finished work
|
||||||
"DONE": "completed",
|
"Done": "completed",
|
||||||
"DEPLOYED": "completed",
|
"Deployed": "completed",
|
||||||
"LIVE": "completed",
|
"Live": "completed",
|
||||||
"TEST COMPLETED": "completed",
|
"Test Completed": "completed",
|
||||||
|
|
||||||
# Paused column — blocked, rejected, or on hold
|
# Paused column — blocked, rejected, or on hold
|
||||||
"IN QA": "paused", # waiting for QA to pick up
|
"In QA": "paused", # waiting for QA to pick up
|
||||||
"REJECTED": "paused",
|
"Rejected": "paused",
|
||||||
}
|
}
|
||||||
|
|
||||||
# Maps Jira Apollo (Jotty Kanban) statuses → Jira workflow statuses.
|
# Maps Jira Apollo (Jotty Kanban) statuses → Jira workflow statuses.
|
||||||
|
|||||||
Reference in New Issue
Block a user