From 78aaebcd4275305d34d1f74d5feae2a0e5ff24d4 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:39:11 +0100 Subject: [PATCH] Fixed submodule error --- .gitea/workflows/pull_request.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 50e8dc1..5a67722 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -90,11 +90,10 @@ jobs: dart fix --apply lib dart fix --apply test # Prüfen, ob Änderungen vorhanden sind - if [ -n "$(git status --porcelain)" ]; then + if [ -n "$(git status --porcelain lib test)" ]; then git config --global user.name "liquid-actions[bot]" git config --global user.email "gitea@liquid-dev.de" - # git checkout ${{gitea.head_ref}} - git add . + git add lib test git commit -m "Auto-format code" git push else