Skip to content

Commit ac07ebb

Browse files
committed
ci: forward secret to reusable workflow
1 parent f0bfa0d commit ac07ebb

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ on:
44
pull_request:
55
merge_group:
66

7-
permissions:
8-
contents: read
9-
107
concurrency:
118
group: ${{ github.workflow }}-${{ github.ref }}
129
cancel-in-progress: true
@@ -15,6 +12,8 @@ jobs:
1512
verifications:
1613
name: Verifications
1714
uses: ./.github/workflows/verifications.yml
15+
secrets:
16+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
1817

1918
required-checks:
2019
name: Require CI status checks

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ jobs:
3939
with:
4040
cache: 'pnpm'
4141
node-version-file: '.nvmrc'
42-
registry-url: 'https://registry.npmjs.org'
4342

4443
# Ensure npm 11.5.1 or later is installed for correct OIDC publishing
4544
- name: Update npm

.github/workflows/verifications.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Verifications
22

33
on:
44
workflow_call:
5+
secrets:
6+
CODECOV_TOKEN:
7+
required: true
58

69
jobs:
710
code-validation:

0 commit comments

Comments
 (0)