From b5cdf7f0c486e8facc1f19065482795659f9ee07 Mon Sep 17 00:00:00 2001 From: Francesco Menghi <53121061+menghif@users.noreply.github.com> Date: Mon, 11 Apr 2022 22:07:53 -0400 Subject: [PATCH] change token name to server-token --- .github/workflows/continuous-integration.yml | 4 ++-- .github/workflows/eslint-ci.yml | 4 ++-- .github/workflows/unit-tests-ci.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 9852fc31f7..ac8ee851cb 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -19,13 +19,13 @@ jobs: eslint: uses: Seneca-CDOT/telescope/.github/workflows/eslint-ci.yml@master secrets: - turborepo-token: ${{ secrets.TURBO_SERVER_TOKEN }} + server-token: ${{ secrets.TURBO_SERVER_TOKEN }} # Run unit tests on all platforms/versions of node unit: uses: Seneca-CDOT/telescope/.github/workflows/unit-tests-ci.yml@master secrets: - turborepo-token: ${{ secrets.TURBO_SERVER_TOKEN }} + server-token: ${{ secrets.TURBO_SERVER_TOKEN }} # Run end-to-end tests along with the microservices in docker-compose on Linux e2e: diff --git a/.github/workflows/eslint-ci.yml b/.github/workflows/eslint-ci.yml index 278f416b21..f2273d2383 100644 --- a/.github/workflows/eslint-ci.yml +++ b/.github/workflows/eslint-ci.yml @@ -3,7 +3,7 @@ name: ESLint Workflow on: workflow_call: secrets: - turborepo-token: + server-token: description: 'The Turborepo local server token' required: true @@ -23,7 +23,7 @@ jobs: uses: felixmosh/turborepo-gh-artifacts@v1 with: repo-token: ${{ github.token }} - server-token: ${{ secrets.turborepo-token }} + server-token: ${{ secrets.server-token }} - name: Install dependencies and run eslint run: | diff --git a/.github/workflows/unit-tests-ci.yml b/.github/workflows/unit-tests-ci.yml index 08cc25447b..9436c8e207 100644 --- a/.github/workflows/unit-tests-ci.yml +++ b/.github/workflows/unit-tests-ci.yml @@ -3,7 +3,7 @@ name: Unit Tests Workflow on: workflow_call: secrets: - turborepo-token: + server-token: description: 'The Turborepo local server token' required: true @@ -27,7 +27,7 @@ jobs: uses: felixmosh/turborepo-gh-artifacts@v1 with: repo-token: ${{ github.token }} - server-token: ${{ secrets.turborepo-token }} + server-token: ${{ secrets.server-token }} - name: Install dependencies and run tests with default env run: |