Skip to content

Commit 4db9d48

Browse files
committed
supervisor: collect issues without an errata
In a previous change (ai-workflows#278) another phase was added to the issues handler that deals with issues where a merge request has been filed and possibly merged but no errata has yet been created. This change updates the JIRA query to also query the Jira issues with the 'jotnar_backported', 'jotnar_rebased', or 'jotnar_merged' label.
1 parent 6fd2f58 commit 4db9d48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

supervisor/collect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
CURRENT_ISSUES_JQL = """
1818
project = RHEL AND AssignedTeam = rhel-jotnar
1919
AND status in ('New', 'In Progress', 'Integration', 'Release Pending')
20-
AND 'Errata Link' is not EMPTY
20+
AND ('Errata Link' is not EMPTY OR labels in ('jotnar_backported', 'jotnar_rebased', 'jotnar_merged'))
2121
AND labels != jotnar_needs_attention
2222
"""
2323

0 commit comments

Comments
 (0)