Skip to content

Commit 522b26b

Browse files
committed
ci: Pass secrets explicitly
1 parent 3395496 commit 522b26b

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ jobs:
1414
secrets:
1515
VSCE_PAT: ${{ secrets.VSCE_PAT }}
1616
OVSX_PAT: ${{ secrets.OVSX_PAT }}
17+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/ci_jobs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
required: true
88
OVSX_PAT:
99
required: true
10+
CODECOV_TOKEN:
11+
required: true
1012

1113
env:
1214
NODE_VERSION: 16.14.2

.github/workflows/dependabot_ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ jobs:
1010
name: CI Jobs
1111
if: ${{ github.actor == 'dependabot[bot]' }}
1212
uses: svsool/vscode-memo/.github/workflows/ci_jobs.yml@master
13+
secrets:
14+
VSCE_PAT: ${{ secrets.VSCE_PAT }}
15+
OVSX_PAT: ${{ secrets.OVSX_PAT }}
16+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)