From 5e61c4813a06737e669a84e2f4327111f7c82b73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Fri, 16 May 2025 01:41:45 +0200 Subject: [PATCH] Fix fetch-depth configuration in checkout step of Gitea workflow --- .gitea/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index b6b9b2a..ef38f25 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -17,6 +17,8 @@ jobs: fi - name: Checkout code uses: https://github.com/actions/checkout@v4 + with: + fetch-depth: 0 - name: Set up Python uses: https://github.com/actions/setup-python@v5