Skip to content

Commit 59e57b0

Browse files
authored
Merge branch 'main' into update-glob-and-body-parser
2 parents 2fced6a + 71b0e7a commit 59e57b0

File tree

10 files changed

+17
-13
lines changed

10 files changed

+17
-13
lines changed

.github/actions/push-docker/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ runs:
7575
gh issue create \
7676
--title "Docker build failed" \
7777
--body "The docker build failed. See the full run for details: ${DETAILS_URL}" \
78-
--label "kind/bug,release-failure"
78+
--label "release-failure"

.github/actions/push-sandbox/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@ runs:
9393
gh issue create \
9494
--title "Docker build failed" \
9595
--body "The docker build failed. See the full run for details: ${DETAILS_URL}" \
96-
--label "kind/bug,release-failure"
96+
--label "release-failure"

.github/workflows/release-manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ jobs:
132132
gh issue create \
133133
--title 'Manual Release Failed for ${RELEASE_TAG} on $(date +'%Y-%m-%d')' \
134134
--body 'The manual release workflow failed. See the full run for details: ${DETAILS_URL}' \
135-
--label 'kind/bug,release-failure,priority/p0'
135+
--label 'release-failure,priority/p0'

.github/workflows/release-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,4 @@ jobs:
157157
gh issue create \
158158
--title "Nightly Release Failed for ${RELEASE_TAG} on $(date +'%Y-%m-%d')" \
159159
--body "The nightly-release workflow failed. See the full run for details: ${DETAILS_URL}" \
160-
--label 'kind/bug,release-failure,priority/p0'
160+
--label 'release-failure,priority/p0'

.github/workflows/release-patch-3-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
gh issue create \
206206
--title 'Patch Release Failed for ${RELEASE_TAG} on $(date +'%Y-%m-%d')' \
207207
--body 'The patch-release workflow failed. See the full run for details: ${DETAILS_URL}' \
208-
--label 'kind/bug,release-failure,priority/p0'
208+
--label 'release-failure,priority/p0'
209209
210210
- name: 'Comment Success on Original PR'
211211
if: '${{ success() && github.event.inputs.original_pr }}'

.github/workflows/release-promote.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ jobs:
261261
gh issue create \
262262
--title 'Promote Release Failed for ${RELEASE_TAG} on $(date +'%Y-%m-%d')' \
263263
--body 'The promote-release workflow failed during preview publish. See the full run for details: ${DETAILS_URL}' \
264-
--label 'kind/bug,release-failure,priority/p0'
264+
--label 'release-failure,priority/p0'
265265
266266
publish-stable:
267267
name: 'Publish stable'
@@ -327,7 +327,7 @@ jobs:
327327
gh issue create \
328328
--title 'Promote Release Failed for ${RELEASE_TAG} on $(date +'%Y-%m-%d')' \
329329
--body 'The promote-release workflow failed during stable publish. See the full run for details: ${DETAILS_URL}' \
330-
--label 'kind/bug,release-failure,priority/p0'
330+
--label 'release-failure,priority/p0'
331331
332332
nightly-pr:
333333
name: 'Create Nightly PR'
@@ -403,4 +403,4 @@ jobs:
403403
gh issue create \
404404
--title 'Promote Release Failed for ${RELEASE_TAG} on $(date +'%Y-%m-%d')' \
405405
--body 'The promote-release workflow failed during nightly PR creation. See the full run for details: ${DETAILS_URL}' \
406-
--label 'kind/bug,release-failure,priority/p0'
406+
--label 'release-failure,priority/p0'

.github/workflows/release-sandbox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ jobs:
4646
gh issue create \
4747
--title 'Sandbox Release Failed on $(date +'%Y-%m-%d')' \
4848
--body 'The sandbox-release workflow failed. See the full run for details: ${DETAILS_URL}' \
49-
--label 'kind/bug,release-failure,priority/p0'
49+
--label 'release-failure,priority/p0'

.github/workflows/smoke-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ jobs:
4747
gh issue create \
4848
--title 'Smoke test failed on ${REF} @ $(date +'%Y-%m-%d')' \
4949
--body 'Smoke test build failed. See the full run for details: ${DETAILS_URL}' \
50-
--label 'kind/bug,priority/p0'
50+
--label 'priority/p0'

integration-tests/extensions-reload.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ describe('extension reloading', () => {
7777
'test-extension (v0.0.1) - active (update available)',
7878
);
7979
// Wait a bit for the UI to settle
80-
await new Promise((resolve) => setTimeout(resolve, 1000));
80+
await new Promise((resolve) => setTimeout(resolve, 3000));
8181
await run.sendKeys('\u0015/mcp list\r');
8282
await run.expectText(
8383
'test-server (from test-extension) - Ready (1 tool)',
@@ -101,7 +101,7 @@ describe('extension reloading', () => {
101101
await run.sendKeys('\u0015/extensions list\r');
102102
await run.expectText('test-extension (v0.0.2) - active (updated)');
103103
// Wait a bit for the UI to settle
104-
await new Promise((resolve) => setTimeout(resolve, 1000));
104+
await new Promise((resolve) => setTimeout(resolve, 3000));
105105
await run.sendKeys('\u0015/mcp list\r');
106106
await run.expectText(
107107
'test-server (from test-extension) - Ready (1 tool)',

integration-tests/globalSetup.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@ export async function setup() {
7474
export async function teardown() {
7575
// Cleanup the test run directory unless KEEP_OUTPUT is set
7676
if (process.env['KEEP_OUTPUT'] !== 'true' && runDir) {
77-
await rm(runDir, { recursive: true, force: true });
77+
try {
78+
await rm(runDir, { recursive: true, force: true });
79+
} catch (e) {
80+
console.warn('Failed to clean up test run directory:', e);
81+
}
7882
}
7983
}

0 commit comments

Comments
 (0)