From d4f5fa29dbd29738a7da6e3c75609b033432a84f Mon Sep 17 00:00:00 2001 From: "Arnaud Porterie (icecrime)" Date: Wed, 8 Feb 2017 07:54:47 -0800 Subject: [PATCH] Randomly assign pull requests older than two weeks Add a daily job to randomly assign pull requests which have been opened for more than two weeks. Signed-off-by: Arnaud Porterie (icecrime) --- poule.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/poule.yml b/poule.yml index a9b7144549..b5a8c83dba 100644 --- a/poule.yml +++ b/poule.yml @@ -99,4 +99,28 @@ settings: { configurations: [ z ], label: "rebuild/z", + +# Once a day, randomly assign pull requests older than 2 weeks. +- schedule: "@daily" + operations: + - type: random-assign + filters: { + age: "2w", + is: "pr", + } + settings: { + users: [ + "anusha-ragunathan", + "cpuguy83", + "crosbymichael", + "dnephin", + "justincormack", + "lk4d4", + "mlaventure", + "thajeztah", + "tiborvass", + "tonistiigi", + "vdemeester", + "vieux", + ] }