From b952e6d97e8202eea9be8ffdf1362c54c5053f6e Mon Sep 17 00:00:00 2001 From: Keith Bauson Date: Thu, 4 Dec 2025 13:26:04 -0500 Subject: [PATCH] add a workflow test --- .github/workflows/test.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fe2539f..8cd7ee8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -181,6 +181,25 @@ jobs: with: args: bash __test__/verify-worktree.sh worktree-test container-worktree-branch + # Credentials when checkout out into symlink + - name: Setup for symlink test + run: mkdir symlink-test-real && ln -s symlink-test-real symlink-test-link + - name: Checkout for worktree test + uses: ./ + with: + path: symlink-test-link + - name: Verify symlink credentials + run: | + cd symlink-test-real + if git config --list --show-origin | grep -q "extraheader"; then + echo "Credentials are configured" + else + echo "ERROR: Credentials are NOT configured" + echo "Full git config:" + git config --list --show-origin + exit 1 + fi + # Basic checkout using REST API - name: Remove basic if: runner.os != 'windows'