From 4d97cf229ba042ab0333186176667249c0f31ec3 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Thu, 1 Feb 2024 16:10:08 +0100 Subject: [PATCH] action: github secrets if no forked prs --- .github/workflows/test-windows.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index e066d109d..0021ea0a5 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -41,6 +41,7 @@ jobs: run: dotnet build -c Release --verbosity minimal - name: Setup Testcontainers Cloud Client + if: github.event_name != 'pull_request' || github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false uses: atomicjar/testcontainers-cloud-setup-action@v1 with: token: ${{ secrets.TC_CLOUD_TOKEN }} @@ -84,6 +85,7 @@ jobs: run: ./build.bat profiler-zip - name: Setup Testcontainers Cloud Client + if: github.event_name != 'pull_request' || github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == false uses: atomicjar/testcontainers-cloud-setup-action@v1 with: token: ${{ secrets.TC_CLOUD_TOKEN }}