Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid holding issues just bumped from CLR to integration #332

Merged
merged 1 commit into from
Mar 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tracker_automations/continuous_manage_queues/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ function run_A1() {

# Basically get all the issues in the candidates queues (filter=14000), that are not bug
# and that haven't received any comment with the standard unholding text (NOT filter = 22054)
# excluding issues recently bumped from CLR back to integration

# Get the list of issues.
${basereq} --action getIssueList \
--jql "(filter=14000) \
AND type IN ('New Feature', Improvement) \
AND NOT filter = 22054" \
AND NOT filter = 22054 \
AND NOT (status changed FROM 'Waiting for component lead review' TO 'Waiting for integration review' AFTER -2h)" \
--file "${resultfile}"

# Iterate over found issues and perform the actions with them.
Expand Down
Loading