Remove git clean -xdf from E2A-Test.yml

This commit is contained in:
Drew Thomasson
2025-07-23 15:26:57 -04:00
committed by GitHub
parent 7c93d559f5
commit a0f8e89380

View File

@@ -84,7 +84,6 @@ jobs:
echo "==> Cleaning working directory"
git reset --hard
git clean -xdf
else
echo "==> Cloning fresh"
git clone "$REPO_URL" "$REPO_DIR"
@@ -105,7 +104,6 @@ jobs:
# Reset to base branch
git checkout -B "$BASE_REF" "remotes/origin/$BASE_REF"
git reset --hard "origin/$BASE_REF"
git clean -xdf
# Merge PR source
if ! git merge --no-ff --no-edit "origin/$HEAD_REF"; then
@@ -117,7 +115,6 @@ jobs:
git fetch origin "$TRIGGER_SHA"
git checkout --detach "$TRIGGER_SHA"
git reset --hard "$TRIGGER_SHA"
git clean -xdf
fi
echo "==> Final repo state:"