From 86c1a916330ab6881ef72ccfbc85a7aea3e9f688 Mon Sep 17 00:00:00 2001 From: Steven Luscher Date: Thu, 12 Dec 2024 17:37:02 -0800 Subject: [PATCH] Downgrade the `TURBO_TEAM` from a secret to a variable --- .github/workflows/bundlesize.yml | 2 +- .github/workflows/preview-gh-pages.yml | 2 +- .github/workflows/publish-canary-releases.yml | 2 +- .github/workflows/publish-gh-pages.yml | 2 +- .github/workflows/publish-packages.yml | 2 +- .github/workflows/pull-requests.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/bundlesize.yml b/.github/workflows/bundlesize.yml index 93e3ad886..c1021475e 100644 --- a/.github/workflows/bundlesize.yml +++ b/.github/workflows/bundlesize.yml @@ -15,7 +15,7 @@ env: # Enables Turborepo Remote Caching. TURBO_REMOTE_CACHE_SIGNATURE_KEY: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }} TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} - TURBO_TEAM: ${{ secrets.TURBO_TEAM }} + TURBO_TEAM: ${{ vars.TURBO_TEAM }} jobs: build: diff --git a/.github/workflows/preview-gh-pages.yml b/.github/workflows/preview-gh-pages.yml index 1751ed661..20a278795 100644 --- a/.github/workflows/preview-gh-pages.yml +++ b/.github/workflows/preview-gh-pages.yml @@ -13,7 +13,7 @@ env: # Enables Turborepo Remote Caching. TURBO_REMOTE_CACHE_SIGNATURE_KEY: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }} TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} - TURBO_TEAM: ${{ secrets.TURBO_TEAM }} + TURBO_TEAM: ${{ vars.TURBO_TEAM }} jobs: compile-gh-pages-legacy: diff --git a/.github/workflows/publish-canary-releases.yml b/.github/workflows/publish-canary-releases.yml index 215b06bf3..101374343 100644 --- a/.github/workflows/publish-canary-releases.yml +++ b/.github/workflows/publish-canary-releases.yml @@ -17,7 +17,7 @@ env: # Enables Turborepo Remote Caching. TURBO_REMOTE_CACHE_SIGNATURE_KEY: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }} TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} - TURBO_TEAM: ${{ secrets.TURBO_TEAM }} + TURBO_TEAM: ${{ vars.TURBO_TEAM }} jobs: build-and-publish-snapshots-to-npm: diff --git a/.github/workflows/publish-gh-pages.yml b/.github/workflows/publish-gh-pages.yml index 1993584ce..fe5f35807 100644 --- a/.github/workflows/publish-gh-pages.yml +++ b/.github/workflows/publish-gh-pages.yml @@ -19,7 +19,7 @@ env: # Enables Turborepo Remote Caching. TURBO_REMOTE_CACHE_SIGNATURE_KEY: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }} TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} - TURBO_TEAM: ${{ secrets.TURBO_TEAM }} + TURBO_TEAM: ${{ vars.TURBO_TEAM }} jobs: compile-gh-pages-legacy: diff --git a/.github/workflows/publish-packages.yml b/.github/workflows/publish-packages.yml index 7ae3ccfa0..93fb19848 100644 --- a/.github/workflows/publish-packages.yml +++ b/.github/workflows/publish-packages.yml @@ -17,7 +17,7 @@ env: # Enables Turborepo Remote Caching. TURBO_REMOTE_CACHE_SIGNATURE_KEY: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }} TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} - TURBO_TEAM: ${{ secrets.TURBO_TEAM }} + TURBO_TEAM: ${{ vars.TURBO_TEAM }} jobs: build-and-publish-to-npm: diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index 476d7e75c..90f9a88ea 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -12,7 +12,7 @@ env: # Enables Turborepo Remote Caching. TURBO_REMOTE_CACHE_SIGNATURE_KEY: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }} TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} - TURBO_TEAM: ${{ secrets.TURBO_TEAM }} + TURBO_TEAM: ${{ vars.TURBO_TEAM }} jobs: # Needed for grouping check-web3 strategies into one check for mergify