From 0b782830a547ee23c84b936784a7c032cb053167 Mon Sep 17 00:00:00 2001 From: Lorenz Junglas <4759511+lolleko@users.noreply.github.com> Date: Fri, 28 Nov 2025 18:13:45 +0100 Subject: [PATCH] Set fetch-depth for public PR check to 0/all (#3492) That way the Bootstrap script will actually be able to find a manifest. --- .github/workflows/pull_request_checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request_checks.yml b/.github/workflows/pull_request_checks.yml index 747fc08a..9365b9bd 100644 --- a/.github/workflows/pull_request_checks.yml +++ b/.github/workflows/pull_request_checks.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v4 with: clean: true - fetch-depth: 1 + fetch-depth: 0 persist-credentials: false - name: Setup .NET uses: actions/setup-dotnet@v5