From c2bf859f8517a9ad7abdef6fa1e00bc2594f86f2 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 19:35:54 +0100 Subject: [PATCH] Removed branch checkout --- .gitea/workflows/pull_request.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 0b92b88..50e8dc1 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -71,7 +71,7 @@ jobs: - name: Install Flutter (wget) run: | - wget --quiet https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz + wget --progress=dot:giga https://storage.googleapis.com/flutter_infra_release/releases/stable/linux/flutter_linux_3.38.2-stable.tar.xz tar xf flutter_linux_3.38.2-stable.tar.xz # Set Git safe directory for Flutter path git config --global --add safe.directory "$(pwd)/flutter" @@ -93,7 +93,7 @@ jobs: if [ -n "$(git status --porcelain)" ]; then git config --global user.name "liquid-actions[bot]" git config --global user.email "gitea@liquid-dev.de" - git checkout ${{gitea.head_ref}} + # git checkout ${{gitea.head_ref}} git add . git commit -m "Auto-format code" git push