From e39eca535208d6970415948afce88711f4c72998 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 18 Feb 2024 11:53:10 +0100 Subject: [PATCH] Add checkout step to chores workflow Adds a repository checkout step in the chores CI workflow to ensure code is available for subsequent chore automation tasks. This update enables the proper execution of the automated script for generating chores issues. --- .forgejo/workflows/chores.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.forgejo/workflows/chores.yml b/.forgejo/workflows/chores.yml index 1527d74..b157dff 100644 --- a/.forgejo/workflows/chores.yml +++ b/.forgejo/workflows/chores.yml @@ -5,5 +5,7 @@ on: [push] jobs: chores: steps: + - name: Check out repository + uses: actions/checkout@v4 - name: Create Chores Issue run: python3 scripts/chores.py \ No newline at end of file