Skip to content

Commit e6b43f3

Browse files
committed
chore: add secrets to workflows
1 parent 675dba8 commit e6b43f3

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

.github/workflows/add-issue-to-project.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ name: Add issue to project
22

33
on:
44
workflow_call:
5+
secrets:
6+
BOT_APP_ID:
7+
description: 'The GitHub App ID for authenticating with the GitHub API'
8+
required: true
9+
BOT_PRIVATE_KEY:
10+
description: 'The GitHub App Private Key for authenticating with the GitHub API'
11+
required: true
512

613
jobs:
714
issue:

.github/workflows/format.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ on:
88
default: "format"
99
required: false
1010
type: string
11+
secrets:
12+
BOT_APP_ID:
13+
description: 'The GitHub App ID for authenticating with the GitHub API'
14+
required: true
15+
BOT_PRIVATE_KEY:
16+
description: 'The GitHub App Private Key for authenticating with the GitHub API'
17+
required: true
1118

1219
jobs:
1320
format:

.github/workflows/preview.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ on:
1212
default: "./examples/**"
1313
required: false
1414
type: string
15+
secrets:
16+
BOT_APP_ID:
17+
description: 'The GitHub App ID for authenticating with the GitHub API'
18+
required: true
19+
BOT_PRIVATE_KEY:
20+
description: 'The GitHub App Private Key for authenticating with the GitHub API'
21+
required: true
1522

1623
jobs:
1724
preview:

0 commit comments

Comments
 (0)