From f8a4ae878618c97b58c3f19f4c9a7376d2726a22 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 18 Feb 2024 11:47:42 +0100 Subject: [PATCH] Trigger chores workflow on push events Updated the trigger event for the chores workflow from on commit to on push to ensure the workflow runs whenever code is pushed to the repository. This enhances automation by aligning the execution of routine tasks with code integration practices. --- .forgejo/workflows/chores.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/chores.yml b/.forgejo/workflows/chores.yml index 6a3bea2..1527d74 100644 --- a/.forgejo/workflows/chores.yml +++ b/.forgejo/workflows/chores.yml @@ -1,4 +1,4 @@ -on: [commit] +on: [push] #schedule: # - cron: '0 12 * * 5'