Skip to content

Commit

Permalink
Merge pull request #278 from stronk7/move_important_to_current
Browse files Browse the repository at this point in the history
Enable back (partially) the move from candidates to current
  • Loading branch information
andrewnicols authored Aug 30, 2023
2 parents 194ffdf + 76ac0e7 commit 6d226df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@
# 4) At least one of this is true:
# a) The issue has a must-fix version. | => filter = 21363
# b) The issue has the mdlqa label. | => labels IN (mdlqa)
# c) The issue priority is critical or higher. | => priority IN (Critical, Blocker)
# d) The issue is flagged as security issue. | => level IS NOT EMPTY
# e) The issue belongs to some of these components: | => component IN (...)
# - Privacy
# - Automated functional tests (behat)
# - Unit tests
#
# This job must be enabled only since freeze day to the end of on-sync period, when normal weeklies begin.
# (see https://docs.moodle.org/dev/Release_process#5_weeks_prior)
Expand Down Expand Up @@ -123,8 +117,8 @@ if [ $behaviorAB == "before" ]; then
run_A1
# A2, move "important" issues from candidates to current
# Note: This has been disabled as of 2023-07-13. See MDLSITE-7296 for more information.
echo "Automatism A2 disabled, not considering important issues any more"
# run_A2
# Note: This has been (partially) enabled again as of 2023-08-29. See MDLSITE-7296 for more information.
run_A2
# A3, move all issues aways from candidates queue:
if [ $behaviorA3 == "move" ]; then
# A3a, keep the current queue fed with bug issues when it's under a threshold.
Expand Down
5 changes: 1 addition & 4 deletions tracker_automations/continuous_manage_queues/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,7 @@ function run_A2() {
AND NOT filter = 21366
AND (
filter = 21363 OR
labels IN (mdlqa) OR
priority IN (Critical, Blocker) OR
level IS NOT EMPTY OR
component IN ('Privacy', 'Automated functional tests (behat)', 'Unit tests')
labels IN (mdlqa)
)" \
--file "${resultfile}"

Expand Down

0 comments on commit 6d226df

Please sign in to comment.