From 7314086b75f6aa4a087affca5fba38bbc07ac2d9 Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Mon, 3 Jun 2024 11:02:17 -0700 Subject: [PATCH] Put GitHub token in env --- .github/workflows/update-downstream.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-downstream.yml b/.github/workflows/update-downstream.yml index 256888d..50f54d2 100644 --- a/.github/workflows/update-downstream.yml +++ b/.github/workflows/update-downstream.yml @@ -24,12 +24,13 @@ jobs: GIT_EMAIL: ${{ github.actor }}@users.noreply.github.com TARGET_REPO: ${{ github.repository_owner }}/${{ matrix.repo }} SOURCE_REPO: ${{ github.repository }} + GITHUB_TOKEN: ${{ github.token }} steps: - name: Check out ${{ env.TARGET_REPO }} uses: actions/checkout@v4 with: repository: ${{ env.TARGET_REPO }} - token: ${{ github.token }} + token: ${{ env.GITHUB_TOKEN }} - name: Install Nix uses: DeterminateSystems/nix-installer-action@main