Switch the updates of the translation catalog from after every push to every 2 days at 6am UTC. Considering that the update-translation-pot will commit the catalog only if changed, and that there are usually not that many changes upstream, it is simpler to update the translation catalog only every couple of days. Signed-off-by: Pino Toscano <ptoscano@xxxxxxxxxx> --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 14146370..a6acc824 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,8 +1,9 @@ name: CI on: - push: - branches: [master] + schedule: + # every two days at 6:00 UTC + - cron: '0 6 */2 * *' jobs: -- 2.26.2