From f12d722bc7c0d71d565e062d791f671c539dea5a Mon Sep 17 00:00:00 2001 From: Pedro Pombeiro Date: Mon, 5 Feb 2018 17:27:00 +0100 Subject: [PATCH] Allow moving from `CONTRIBUTOR` to `IN TEST` directly --- bot_scripts/assign-approved-pr-to-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot_scripts/assign-approved-pr-to-test.js b/bot_scripts/assign-approved-pr-to-test.js index 7704078..659620a 100644 --- a/bot_scripts/assign-approved-pr-to-test.js +++ b/bot_scripts/assign-approved-pr-to-test.js @@ -202,7 +202,7 @@ async function assignPullRequestToCorrectColumn (github, robot, repo, pullReques let srcColumns, dstColumn switch (state) { case 'approved': - srcColumns = [reviewColumn] + srcColumns = [contributorColumn, reviewColumn] dstColumn = testColumn break case 'failed':