From 01d7761016518ff9dc451fdf42b2fc48e1de9c53 Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Thu, 23 Oct 2025 16:24:25 -0400 Subject: [PATCH] Doing stuff. Signed-off-by: Cliff Hill --- .gitea/workflows/tests.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index e0c3010..83eb4f3 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -46,6 +46,11 @@ jobs: if ! git clone --depth 1 http://dogar.darkhelm.org/DarkHelm.org/plex-playlist.git . 2>/dev/null; then echo "Both HTTPS and HTTP failed. Repository might need manual setup." echo "Creating minimal repository structure for testing..." + + # Configure git user for commits + git config --global user.email "ci@gitea-actions.local" + git config --global user.name "Gitea Actions CI" + # Create basic structure so tests can at least try to run mkdir -p backend/src/backend backend/tests frontend/src echo "# Plex Playlist" > README.md @@ -180,6 +185,11 @@ jobs: if ! git clone --depth 1 http://dogar.darkhelm.org/DarkHelm.org/plex-playlist.git . 2>/dev/null; then echo "Both HTTPS and HTTP failed. Repository might need manual setup." echo "Creating minimal repository structure for testing..." + + # Configure git user for commits + git config --global user.email "ci@gitea-actions.local" + git config --global user.name "Gitea Actions CI" + # Create basic structure so tests can at least try to run mkdir -p backend/src/backend backend/tests frontend/src echo "# Plex Playlist" > README.md