From 4271f9418b84ade3657db2e93385ff28b5fa28a7 Mon Sep 17 00:00:00 2001 From: Sanne Raymaekers Date: Wed, 3 Jul 2019 17:00:35 +0200 Subject: [PATCH] .tasks: Only run issue-scan directly if AMQP_SERVER is not set Closes #12215 --- .tasks | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.tasks b/.tasks index 4f1c3a918..6f28bd9b4 100755 --- a/.tasks +++ b/.tasks @@ -18,6 +18,8 @@ if [ -n "$AMQP_SERVER" ]; then echo bots/run-queue --amqp "$AMQP_SERVER" else bots/tests-scan + # Any tasks related to issues + bots/issue-scan fi # When run automated, randomize to minimize stampeding herd @@ -35,6 +37,3 @@ if [ $chance -gt 9 ]; then bots/naughty-trigger bots/learn-trigger fi - -# Any tasks related to issues -bots/issue-scan