Skip to content

Commit

Permalink
Update Jira ON_QA status for Jira issue handler
Browse files Browse the repository at this point in the history
  • Loading branch information
jameerpathan111 committed Oct 21, 2024
1 parent 4fb0042 commit 502c57b
Show file tree
Hide file tree
Showing 3 changed files with 4 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 @@ -185,7 +185,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
4 changes: 2 additions & 2 deletions robottelo/constants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1766,8 +1766,8 @@
# 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")
JIRA_ONQA_STATUS = "Testing"
JIRA_CLOSED_STATUSES = ("Release Pending", "Closed")
JIRA_WONTFIX_RESOLUTIONS = "Obsolete"

Expand Down

0 comments on commit 502c57b

Please sign in to comment.