From 4d6660623d9ed5fa957e427bb76708ce509153c5 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 17 Aug 2026 01:12:46 +0300 Subject: [PATCH] Update validate.ts --- scripts/commands/issue/validate.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/commands/issue/validate.ts b/scripts/commands/issue/validate.ts index 20fea62b5a..bd7acecd51 100644 --- a/scripts/commands/issue/validate.ts +++ b/scripts/commands/issue/validate.ts @@ -78,9 +78,11 @@ async function main() { } } - const streamId = data.getString('stream_id') - if (streamId) { - errors = errors.concat(validateStreamId(streamId)) + if (!data.isDeleted('stream_id')) { + const streamId = data.getString('stream_id') + if (streamId) { + errors = errors.concat(validateStreamId(streamId)) + } } }