Skip to content

Commit 5e82dc1

Browse files
committed
chore: move to publish job, fix description
1 parent 97c7585 commit 5e82dc1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@ jobs:
1515
RELEASE_CHANNEL: ${{ steps.npm-tag.outputs.RELEASE_CHANNEL }}
1616
steps:
1717
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
18-
- uses: mongodb-js/devtools-shared/actions/setup-bot-token@main
19-
id: app-token
20-
with:
21-
app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }}
22-
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }}
2318
- uses: actions/checkout@v5
2419
with:
2520
fetch-depth: 0
@@ -85,6 +80,11 @@ jobs:
8580
if: needs.check.outputs.VERSION_EXISTS == 'false'
8681
steps:
8782
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
83+
- uses: mongodb-js/devtools-shared/actions/setup-bot-token@main
84+
id: app-token
85+
with:
86+
app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }}
87+
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }}
8888
- uses: actions/checkout@v5
8989
- uses: actions/setup-node@v6
9090
with:

src/common/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ export const UserConfigSchema = z.object({
226226
.record(z.string())
227227
.default({})
228228
.describe(
229-
"Custom HTTP headers to include in responses from the HTTP server (only used when transport is 'http'). Useful for adding CORS headers, authentication tokens, or other custom headers required by your client application."
229+
"HTTP headers that will be validated for requests made to the HTTP server (only used when transport is 'http')."
230230
),
231231
idleTimeoutMs: z
232232
.number()

0 commit comments

Comments
 (0)