From 376b828fc061d0d1cbc73034feafab47e8829097 Mon Sep 17 00:00:00 2001 From: Sebastiaan de Schaetzen Date: Wed, 23 Apr 2025 12:03:00 +0200 Subject: [PATCH] Fetch all history --- .gitea/workflows/workflow.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/workflow.yml b/.gitea/workflows/workflow.yml index cf5a8fe..c6485dc 100644 --- a/.gitea/workflows/workflow.yml +++ b/.gitea/workflows/workflow.yml @@ -10,7 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Configure Git run: | @@ -27,7 +29,7 @@ jobs: - name: Merge latest changes run: | - git merge aur/master --allow-unrelated-histories + git merge aur/master git status - name: Push changes (if any)