From 5a17cc9b41a5e591b9e4e6834fb66184a54d9d7d Mon Sep 17 00:00:00 2001 From: Justin De Burgo Date: Fri, 9 Dec 2022 11:22:12 -0600 Subject: [PATCH] adding documentation for exact locations Signed-off-by: Justin De Burgo --- plugins/catalog-backend/config.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/plugins/catalog-backend/config.d.ts b/plugins/catalog-backend/config.d.ts index 5f0f8f1ea2..cff8ee71c3 100644 --- a/plugins/catalog-backend/config.d.ts +++ b/plugins/catalog-backend/config.d.ts @@ -57,11 +57,15 @@ export interface Config { /** * The exact location, e.g. * "https://github.com/org/repo/blob/master/users.yaml". + * + * The exact location can also be used to match on locations + * that contain glob characters themselves, e.g. + * "https://github.com/org/*\/blob/master/*.yaml". */ exact?: string; /** * The pattern allowed for the location, e.g. - * "https://github.com/org/*/blob/master/*.yaml. + * "https://github.com/org/*\/blob/master/*.yaml". */ pattern?: string; }>;