From 965d1a41f1380f417a42bb1386a37143e4d1107c Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 18 Feb 2024 13:35:18 +0100 Subject: [PATCH] Enabled scheduled execution for chores workflow Uncommented the cron job in the chores workflow configuration, setting it to run automatically at noon every Friday. This change facilitates regular, automated maintenance tasks without manual intervention. --- .forgejo/workflows/chores.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/chores.yml b/.forgejo/workflows/chores.yml index b64b17c..0d1647d 100644 --- a/.forgejo/workflows/chores.yml +++ b/.forgejo/workflows/chores.yml @@ -1,6 +1,6 @@ -on: [push] - #schedule: - # - cron: '0 12 * * 5' +on: + schedule: + - cron: '0 12 * * 5' jobs: chores: