diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index ac8ee851cb..49d24febeb 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: - server-token: ${{ secrets.TURBO_SERVER_TOKEN }} + turbo_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: - server-token: ${{ secrets.TURBO_SERVER_TOKEN }} + turbo_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/docs-ci.yml b/.github/workflows/docs-ci.yml index 2fa643579f..d31a9e34b9 100644 --- a/.github/workflows/docs-ci.yml +++ b/.github/workflows/docs-ci.yml @@ -21,4 +21,4 @@ jobs: eslint: uses: Seneca-CDOT/telescope/.github/workflows/eslint-ci.yml@master secrets: - server-token: ${{ secrets.TURBO_SERVER_TOKEN }} + turbo_server_token: ${{ secrets.TURBO_SERVER_TOKEN }} diff --git a/.github/workflows/eslint-ci.yml b/.github/workflows/eslint-ci.yml index f2273d2383..e5d29ed87a 100644 --- a/.github/workflows/eslint-ci.yml +++ b/.github/workflows/eslint-ci.yml @@ -3,7 +3,7 @@ name: ESLint Workflow on: workflow_call: secrets: - server-token: + turbo_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.server-token }} + server-token: ${{ secrets.turbo_server_token }} - name: Install dependencies and run eslint run: | diff --git a/.github/workflows/mobile-deploy.yml b/.github/workflows/mobile-deploy.yml index 62c53fe205..fd3e6d541a 100644 --- a/.github/workflows/mobile-deploy.yml +++ b/.github/workflows/mobile-deploy.yml @@ -16,7 +16,7 @@ jobs: eslint: uses: Seneca-CDOT/telescope/.github/workflows/eslint-ci.yml@master secrets: - server-token: ${{ secrets.TURBO_SERVER_TOKEN }} + turbo_server_token: ${{ secrets.TURBO_SERVER_TOKEN }} publish: needs: [prettier, eslint] diff --git a/.github/workflows/unit-tests-ci.yml b/.github/workflows/unit-tests-ci.yml index 9436c8e207..5dd79b3643 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: - server-token: + turbo_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.server-token }} + server-token: ${{ secrets.turbo_server_token }} - name: Install dependencies and run tests with default env run: |