@@ -30,9 +30,9 @@ function run_A1() {
3030
3131 # Get the list of issues.
3232 ${basereq} --action getIssueList \
33- --jql " (filter=${filter_candidatesForIntegration} ) \
33+ --jql " (filter=' ${filter_candidatesForIntegration} ' ) \
3434 AND type IN ('New Feature', Improvement) \
35- AND NOT filter = ${filter_issuesVotedToUnhold} \
35+ AND NOT filter = ' ${filter_issuesVotedToUnhold} ' \
3636 AND NOT (status changed FROM 'Waiting for component lead review' TO 'Waiting for integration review' AFTER -2h)" \
3737 --file " ${resultfile} "
3838
@@ -63,10 +63,10 @@ If you want Moodle HQ to consider including it into the incoming major release p
6363function run_A2() {
6464 # Get the list of issues.
6565 ${basereq} --action getIssueList \
66- --jql " filter=${filter_candidatesForIntegration}
67- AND NOT filter = ${filter_issuesHeldUntilAfterRelease}
66+ --jql " filter=' ${filter_candidatesForIntegration} '
67+ AND NOT filter = ' ${filter_issuesHeldUntilAfterRelease} '
6868 AND (
69- filter = ${filter_mustFixIssues} OR
69+ filter = ' ${filter_mustFixIssues} ' OR
7070 labels IN (mdlqa) OR
7171 level IS NOT EMPTY
7272 )" \
@@ -134,7 +134,7 @@ function run_A3a() {
134134 if [[ " $counter " -lt " $currentmin " ]]; then
135135 # Get an ordered list of issues in the candidate queue.
136136 ${basereq} --action getIssueList \
137- --jql " filter=${filter_candidatesForIntegration} \
137+ --jql " filter=' ${filter_candidatesForIntegration} ' \
138138 ORDER BY Rank ASC" \
139139 --file " ${resultfile} "
140140
@@ -194,9 +194,9 @@ function run_A3b() {
194194 # - Must-fix issues
195195 # - mdlqa issues
196196 ${basereq} --action getIssueList \
197- --jql " filter=${filter_candidatesForIntegration} OR (
198- filter=${filter_candidatesForCLR} AND NOT (
199- filter = ${filter_mustFixIssues} OR
197+ --jql " filter=' ${filter_candidatesForIntegration} ' OR (
198+ filter=' ${filter_candidatesForCLR} ' AND NOT (
199+ filter = ' ${filter_mustFixIssues} ' OR
200200 labels IN (mdlqa)
201201 )
202202 )" \
@@ -242,7 +242,7 @@ function run_B1b() {
242242 if [[ " $counter " -lt " $currentmin " ]]; then
243243 # Get an ordered list of issues in the candidate queue.
244244 ${basereq} --action getIssueList \
245- --jql " filter=${filter_candidatesForIntegration} \
245+ --jql " filter=' ${filter_candidatesForIntegration} ' \
246246 ORDER BY Rank ASC" \
247247 --file " ${resultfile} "
248248
@@ -305,9 +305,9 @@ function run_B1a() {
305305
306306 # Get the list of issues.
307307 ${basereq} --action getIssueList \
308- --jql " (filter=${filter_candidatesForIntegration} OR filter=${filter_candidatesForCLR} ) \
308+ --jql " (filter=' ${filter_candidatesForIntegration} ' OR filter=' ${filter_candidatesForCLR} ' ) \
309309 AND type IN ('New Feature', Improvement) \
310- AND NOT filter = ${filter_issuesVotedToUnhold} " \
310+ AND NOT filter = ' ${filter_issuesVotedToUnhold} ' " \
311311 --file " ${resultfile} "
312312
313313 # Iterate over found issues and perform the actions with them.
0 commit comments