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

Move from participants to JQL Tricks commentedByUser() #287

Merged
merged 2 commits into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion tests/0-setup.bats
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ load libs/shared_setup
assert_success

run $phpcs --version
assert_output --regexp "PHP_CodeSniffer version [0-9]+\.[0-9]+\.[0-9]+ \(stable\) by Squiz \(http://www.squiz.net\)"
assert_output --regexp "PHP_CodeSniffer version [0-9]+\.[0-9]+\.[0-9]+ \(stable\) by Squiz and PHPCSStandards"
}

@test "GNU grep installed" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ${basereq} --action getIssueList \
--jql "project = 'Moodle' \
AND status = 'Waiting for component lead review' \
AND status WAS NOT 'Waiting for component lead review' ON '-${schedulemins}' \
AND participants not in (tobic) \
AND issue NOT IN commentedByUser('tobic') \
AND level IS EMPTY \
ORDER BY priority DESC, votes DESC, 'Last comment date' ASC" \
--outputFormat 101 \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ${basereq} --action getIssueList \
--jql "project = 'Moodle' \
AND status = 'Waiting for integration review' \
AND status WAS NOT 'Waiting for integration review' ON '-${schedulemins}' \
AND participants not in (tobic) \
AND issue NOT IN commentedByUser('tobic') \
AND level IS EMPTY \
ORDER BY priority DESC, votes DESC, 'Last comment date' ASC" \
--outputFormat 101 \
Expand Down