Skip to content

Commit

Permalink
[6.15.z] Update Jira ON_QA status for Jira issue handler (#17087)
Browse files Browse the repository at this point in the history
Update Jira ON_QA status for Jira issue handler (#16721)

(cherry picked from commit a2f2587)

Co-authored-by: Jameer Pathan <21165044+jameerpathan111@users.noreply.github.com>
  • Loading branch information
Satellite-QE and jameerpathan111 authored Dec 5, 2024
1 parent 3c63b8f commit 0fe5ad6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion conf/jira.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ JIRA:
COMMENT_VISIBILITY: "Red Hat Employee"
ENABLE_COMMENT: false
# Comment only if jira is in one of the following state
ISSUE_STATUS: ["Review", "Release Pending"]
ISSUE_STATUS: ["Testing", "Release Pending"]
2 changes: 1 addition & 1 deletion robottelo/config/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
Validator('jira.comment_type', default="group"),
Validator('jira.comment_visibility', default="Red Hat Employee"),
Validator('jira.enable_comment', default=False),
Validator('jira.issue_status', default=["Review", "Release Pending"]),
Validator('jira.issue_status', default=["Testing", "Release Pending"]),
],
ldap=[
Validator(
Expand Down
12 changes: 10 additions & 2 deletions robottelo/constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1752,8 +1752,16 @@
# Jira statuses used by Robottelo issue handler.
JIRA_TESTS_PASSED_LABEL = "tests-passed"
JIRA_TESTS_FAILED_LABEL = "tests-failed"
JIRA_OPEN_STATUSES = ("New", "Backlog", "Refinement", "To Do", "In Progress")
JIRA_ONQA_STATUS = "Review"
JIRA_OPEN_STATUSES = (
"New",
"Backlog",
"Refinement",
"To Do",
"In Progress",
"Review",
"Release Pending - Upstream",
)
JIRA_ONQA_STATUS = "Testing"
JIRA_CLOSED_STATUSES = ("Release Pending", "Closed")
JIRA_WONTFIX_RESOLUTIONS = "Obsolete"

Expand Down

0 comments on commit 0fe5ad6

Please sign in to comment.