From 645f681bdd79d357a4cf746f2573880675e8931b Mon Sep 17 00:00:00 2001 From: Whit Waldo Date: Wed, 10 Jun 2026 18:03:38 -0500 Subject: [PATCH] Removed 1.17 from CI testing temporarily Signed-off-by: Whit Waldo --- .github/tools/tag-selector/src/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/tools/tag-selector/src/index.ts b/.github/tools/tag-selector/src/index.ts index f9281803c..5d94e4213 100644 --- a/.github/tools/tag-selector/src/index.ts +++ b/.github/tools/tag-selector/src/index.ts @@ -22,7 +22,10 @@ async function run() { per_page: 100 }); - const tagNames = tags.map((t: { name: string }) => t.name); + // Temporary: skip Dapr 1.17.x while that version is blocked in testing. + const tagNames = tags + .map((t: { name: string }) => t.name) + .filter((name) => !name.includes("1.17.")); const result = computeFromTags({ tags: tagNames, tagPrefix,