Skip to content

Commit b782b9f

Browse files
committed
fix(new-work): drop assignee filter from active sprint query
RHCLOUD-47866 Sprint tickets should be picked up regardless of assignee — only status matters. Backlog query keeps assignee filter unchanged.
1 parent 96215e5 commit b782b9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.claude/skills/new-work/new_work.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def get_candidates():
105105
if sprint:
106106
jql = (
107107
f"project = RHCLOUD AND labels = {BOT_LABEL} "
108-
f"AND assignee is EMPTY AND status IN ({status_list}) "
108+
f"AND status IN ({status_list}) "
109109
f"AND sprint = {sprint['id']} "
110110
f"ORDER BY priority DESC, created ASC"
111111
)

0 commit comments

Comments
 (0)