Skip to content

Commit ca9025c

Browse files
authored
ci: correct syntax for passing secrets
1 parent 6c0f10f commit ca9025c

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/build-push-test.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@ name: Build, Push & Test
44
on:
55
workflow_call:
66
secrets:
7-
TEST_GITHUB_TOKEN: ${{ secrets.TEST_GITHUB_TOKEN }}
8-
TEST_GITHUB_USER: ${{ secrets.TEST_GITHUB_USER }}
9-
TEST_GITHUB_PASSWORD: ${{ secrets.TEST_GITHUB_PASSWORD }}
10-
TEST_GITHUB_TOTP_SECRET: ${{ secrets.TEST_GITHUB_TOTP_SECRET }}
7+
TEST_GITHUB_PASSWORD:
8+
required: false
9+
TEST_GITHUB_TOKEN:
10+
required: false
11+
TEST_GITHUB_TOTP_SECRET:
12+
required: false
13+
TEST_GITHUB_USER:
14+
required: false
1115

1216
permissions: {}
1317

0 commit comments

Comments
 (0)