From fd745f097186d76333490533867205100b9e2b18 Mon Sep 17 00:00:00 2001 From: Savil Srivastava <676452+savil@users.noreply.github.com> Date: Fri, 3 Oct 2025 14:27:14 -0700 Subject: [PATCH] [devbox] attempt 2: add GITHUB_TOKEN for nix --- .github/workflows/cli-tests.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/cli-tests.yaml b/.github/workflows/cli-tests.yaml index e7f690bdcb1..490aefd7c1b 100644 --- a/.github/workflows/cli-tests.yaml +++ b/.github/workflows/cli-tests.yaml @@ -178,6 +178,11 @@ jobs: uses: jetify-com/devbox-install-action@jl/migrate-installer with: enable-cache: true + - name: Setup Nix GitHub authentication + run: | + # Setup github authentication to ensure Github's rate limits are not hit + mkdir -p ~/.config/nix + echo "access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}" > ~/.config/nix/nix.conf - name: Run fast tests if: matrix.run-project-tests == 'project-tests-off' run: |