Skip to content

Commit d8e5cf9

Browse files
feat: Add required secrets for workflow_call in release workflows
1 parent fcecb8e commit d8e5cf9

File tree

2 files changed

+42
-2
lines changed

2 files changed

+42
-2
lines changed

.github/workflows/release-feature-branch.yaml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
name: Release (feature branch)
22

3-
on: workflow_call
3+
on:
4+
workflow_call:
5+
secrets:
6+
PLANETSCALE_CONNECTION_STRING:
7+
required: true
8+
NEON_CONNECTION_STRING:
9+
required: true
10+
NEON_HTTP_CONNECTION_STRING:
11+
required: true
12+
TIDB_CONNECTION_STRING:
13+
required: true
14+
XATA_API_KEY:
15+
required: true
16+
XATA_BRANCH:
17+
required: true
18+
LIBSQL_REMOTE_URL:
19+
required: true
20+
LIBSQL_REMOTE_TOKEN:
21+
required: true
22+
SQLITE_CLOUD_CONNECTION_STRING:
23+
required: true
424

525
jobs:
626
test:

.github/workflows/release-latest.yaml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
name: Release (latest)
22

3-
on: workflow_call
3+
on:
4+
workflow_call:
5+
secrets:
6+
PLANETSCALE_CONNECTION_STRING:
7+
required: true
8+
NEON_CONNECTION_STRING:
9+
required: true
10+
NEON_HTTP_CONNECTION_STRING:
11+
required: true
12+
TIDB_CONNECTION_STRING:
13+
required: true
14+
XATA_API_KEY:
15+
required: true
16+
XATA_BRANCH:
17+
required: true
18+
LIBSQL_REMOTE_URL:
19+
required: true
20+
LIBSQL_REMOTE_TOKEN:
21+
required: true
22+
SQLITE_CLOUD_CONNECTION_STRING:
23+
required: true
424

525
jobs:
626
test:

0 commit comments

Comments
 (0)