From f87c2e47cd05db7db0e59d2ffa19d4501a3538b6 Mon Sep 17 00:00:00 2001 From: Saad Najmi Date: Fri, 27 Feb 2026 16:14:50 -0800 Subject: [PATCH] ci(changesets-version): don't persist credentials in checkout Let's try making the checkout faster and not persist credentials so the tokens' credentials work better. --- .github/workflows/changesets-version.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/changesets-version.yml b/.github/workflows/changesets-version.yml index e44d5b7f9a..f9f99df2d7 100644 --- a/.github/workflows/changesets-version.yml +++ b/.github/workflows/changesets-version.yml @@ -14,6 +14,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v6 + with: + filter: blob:none + fetch-depth: 0 + persist-credentials: false - name: Set up toolchain uses: microsoft/react-native-test-app/.github/actions/setup-toolchain@5.0.14