From bf9c26e819d61232b97757e38a70affa24a24ff5 Mon Sep 17 00:00:00 2001 From: Rob Lemley Date: Thu, 25 Oct 2018 21:11:35 +0000 Subject: [PATCH] Bug 1499590 - Add periodic-file-updates task to .cron.yml. r=dustin Added configuration for periodic-file-updates task to comm's .cron.yml. This cron task mirrors one found in mozilla- repositories, and was part of comm-'s buildbot configuration that needed to be moved to Taskcluster. Differential Revision: https://phabricator.services.mozilla.com/D9859 --- .cron.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.cron.yml b/.cron.yml index ffaf0319e2..17bff7219c 100644 --- a/.cron.yml +++ b/.cron.yml @@ -53,3 +53,25 @@ jobs: run-on-projects: - comm-central when: [] # never (hook only) + + - name: periodic-update + job: + type: decision-task + treeherder-symbol: Nfile + target-tasks-method: file_update + run-on-projects: + - comm-central + - comm-beta + - comm-esr60 + when: + by-project: + # No default branch + comm-central: + - {weekday: 'Monday', hour: 10, minute: 0} + - {weekday: 'Thursday', hour: 10, minute: 0} + comm-beta: + - {weekday: 'Monday', hour: 10, minute: 0} + - {weekday: 'Thursday', hour: 10, minute: 0} + comm-esr60: + - {weekday: 'Monday', hour: 10, minute: 0} + - {weekday: 'Thursday', hour: 10, minute: 0}