Skip to content

Commit e7ef4a7

Browse files
authored
chore: remove NX token (#3406)
## Proposed change <!-- Please include a summary of the changes and the related issue. Please also include relevant motivation and context. --> ## Related issues <!-- Please make sure to follow the [contribution guidelines](https://github.com/amadeus-digital/Otter/blob/main/CONTRIBUTING.md) --> *- No issue associated -* <!-- * 🐛 Fix #issue --> <!-- * 🐛 Fix resolves #issue --> <!-- * 🚀 Feature #issue --> <!-- * 🚀 Feature resolves #issue --> <!-- * :octocat: Pull Request #issue -->
2 parents 39e21a1 + 2113697 commit e7ef4a7

File tree

8 files changed

+0
-29
lines changed

8 files changed

+0
-29
lines changed

.github/workflows/check-release.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ on:
2929
type: boolean
3030
default: false
3131
description: Run IT Tests
32-
secrets:
33-
NX_CLOUD_ACCESS_TOKEN:
34-
required: false
35-
description: Token to use Nx Cloud token
3632

3733
jobs:
3834
auditRelease:

.github/workflows/code-check.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ on:
1414
required: false
1515
description: Skip the nx cache
1616
secrets:
17-
NX_CLOUD_ACCESS_TOKEN:
18-
required: false
19-
description: Token to use Nx Cloud token
2017
CODECOV_TOKEN:
2118
required: false
2219
description: Token Report to Codecov
@@ -26,7 +23,6 @@ env:
2623
NX_TASK_TARGET_CONFIGURATION: ci
2724
NX_SKIP_NX_CACHE: ${{ inputs.skipNxCache }}
2825
YARN_ENABLE_HARDENED_MODE: 0
29-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
3026

3127
permissions:
3228
contents: read

.github/workflows/deploy-showcase.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ jobs:
2727
name: github-pages
2828
url: ${{ steps.deployment.outputs.page_url }}
2929
runs-on: ubuntu-latest
30-
env:
31-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
3230
steps:
3331
- name: Checkout
3432
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

.github/workflows/e2e-tests.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ on:
88
default: false
99
required: false
1010
description: Skip the nx cache
11-
secrets:
12-
NX_CLOUD_ACCESS_TOKEN:
13-
required: false
14-
description: Token to use Nx Cloud token
1511

1612
env:
1713
NX_PARALLEL: ${{ vars.NX_PARALLEL }}
@@ -28,8 +24,6 @@ permissions:
2824
jobs:
2925
e2e-tests:
3026
runs-on: ubuntu-24.04
31-
env:
32-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
3327
steps:
3428
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3529
- uses: ./tools/github-actions/download-build-output

.github/workflows/it-tests.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ on:
1313
default: ''
1414
description: The branch, tag or SHA to checkout.
1515
secrets:
16-
NX_CLOUD_ACCESS_TOKEN:
17-
required: false
18-
description: Token to use Nx Cloud token
1916
CODECOV_TOKEN:
2017
required: false
2118
description: Token Report to Codecov
@@ -32,8 +29,6 @@ permissions:
3229
jobs:
3330
prepare-verdaccio:
3431
runs-on: ubuntu-latest
35-
env:
36-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
3732
steps:
3833
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3934
with:
@@ -80,7 +75,6 @@ jobs:
8075
name: it-tests (${{ matrix.os }}, ${{ matrix.packageManager }}, ${{ matrix.testEnvironment }})
8176
runs-on: ${{ matrix.os }}
8277
env:
83-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
8478
ENFORCED_PACKAGE_MANAGER: ${{ matrix.packageManager }}
8579
PREPARE_TEST_ENV_TYPE: ${{ matrix.testEnvironment }}
8680
steps:

.github/workflows/main.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ env:
2020
NX_PARALLEL: ${{ vars.NX_PARALLEL }}
2121
NX_TASK_TARGET_CONFIGURATION: ci
2222
YARN_ENABLE_HARDENED_MODE: 0
23-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
2423

2524
jobs:
2625
# Check the integrity of yarn lock
@@ -104,7 +103,6 @@ jobs:
104103
checks:
105104
uses: ./.github/workflows/code-check.yml
106105
secrets:
107-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
108106
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
109107
needs: [yarn_lock_check]
110108
with:
@@ -114,7 +112,6 @@ jobs:
114112
it-tests:
115113
uses: ./.github/workflows/it-tests.yml
116114
secrets:
117-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
118115
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
119116
needs: [yarn_lock_check, build]
120117
with:
@@ -126,8 +123,6 @@ jobs:
126123
issues: write
127124
pull-requests: write
128125
uses: ./.github/workflows/e2e-tests.yml
129-
secrets:
130-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
131126
needs: [yarn_lock_check, build]
132127
with:
133128
skipNxCache: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/heads/release') }}

.github/workflows/pr-labels.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
runs-on: ubuntu-latest
1111
env:
1212
SKIP_ON_LABELS: '["cascading"]'
13-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
1413
permissions:
1514
pull-requests: write
1615
issues: write

.github/workflows/publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ on:
4848

4949
env:
5050
NX_SKIP_NX_CACHE: ${{ inputs.skipNxCache }}
51-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
5251

5352
permissions:
5453
contents: read

0 commit comments

Comments
 (0)