From 8e70ae21a1b4b30a35f2b8c32f316dd8d1eee60e Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Mon, 9 Mar 2026 12:03:34 +0000 Subject: [PATCH] Update `GitHubRepositoryProperty` to match schema --- src/feature-flags/properties.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/feature-flags/properties.ts b/src/feature-flags/properties.ts index 3b55fcb6a..e98a41426 100644 --- a/src/feature-flags/properties.ts +++ b/src/feature-flags/properties.ts @@ -37,7 +37,7 @@ const repositoryPropertyParsers: { */ export interface GitHubRepositoryProperty { property_name: string; - value: string; + value: string | string[]; } /**