FTBFS weekly reminder: Only run every third week

Fixes https://pagure.io/releng/issue/8915

Signed-off-by: Miro Hrončok <miro@hroncok.cz>

Consider my patch Public Domain
This commit is contained in:
Miro Hrončok 2019-11-27 12:17:27 +01:00 committed by Pierre-Yves Chibon
parent 53d1d9190c
commit cb70c21385

View file

@ -1,5 +1,7 @@
#!/bin/bash
# A weekly cron job which actually does the items needed.
# Only run every third week, see https://pagure.io/releng/issue/8915
test $(($(date +%W) % 3)) -eq 0 || exit 0
TMPDIR=`mktemp -d /tmp/ftbfs_reminder.XXXXXX`
GITREPO=https://pagure.io/releng.git
SCRIPT=ftbfs_weekly_reminder.py