Skip to content

Commit 7d7469d

Browse files
committed
NEW (Extension) @W-17831303@ Revert the artifact creation and smoke tests from using svc idee token
1 parent 0e602f9 commit 7d7469d

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

.github/workflows/create-release-branch.yml

-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ jobs:
5656
- uses: actions/checkout@v4
5757
with:
5858
ref: 'dev'
59-
token: ${{ secrets.IDEE_GH_TOKEN }} # So we can access internal repo to pull shared ui components
6059
# We need to set up Node and install our Node dependencies.
6160
- uses: actions/setup-node@v4
6261
with:

.github/workflows/create-vsix-artifact.yml

-4
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,10 @@ jobs:
99
steps:
1010
- name: 'Check out the code'
1111
uses: actions/checkout@v4
12-
with:
13-
token: ${{ secrets.IDEE_GH_TOKEN }} # So we can access internal repo to pull shared ui components
1412
- name: 'Set up NodeJS'
1513
uses: actions/setup-node@v4
1614
with:
1715
node-version: 'lts/*' # Node LTS should always be fine.
18-
- name: Configure Git for private repo access
19-
run: git config --global --add url."https://${{ secrets.IDEE_GH_TOKEN }}@github.com/".insteadOf "https://github.com/"
2016
- name: 'Install node dependencies'
2117
run: yarn install --frozen-lockfile
2218
- name: 'Create VSIX'

.github/workflows/run-tests.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ jobs:
3535
uses: actions/checkout@v4
3636
with:
3737
ref: ${{ inputs.target-branch }}
38-
token: ${{ secrets.IDEE_GH_TOKEN }} # So we can access internal repo to pull shared ui components
39-
- name: 'Set up NodeJS'
38+
- name: 'Set up NodeJS'
4039
uses: actions/setup-node@v4
4140
with:
4241
node-version: 'lts/*' # Node LTS should always be fine.
@@ -48,8 +47,6 @@ jobs:
4847
- uses: actions/setup-python@v5
4948
with:
5049
python-version: 3.12
51-
- name: Configure Git for private repo access
52-
run: git config --global --add url."https://${{ secrets.IDEE_GH_TOKEN }}@github.com/".insteadOf "https://github.com/"
5350
- name: 'Install node module dependencies'
5451
run: yarn install --frozen-lockfile
5552
# We'll need to install the CLI tool, since some of the tests

0 commit comments

Comments
 (0)