From 8242078c064b8dabfaef01f4424eebd5d183da69 Mon Sep 17 00:00:00 2001 From: Alex Corey Date: Mon, 9 May 2022 11:17:22 -0400 Subject: [PATCH] Prevents the api label from being added to UI only PRs --- .github/pr_labeler.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/pr_labeler.yml b/.github/pr_labeler.yml index 793e389ac7..81d6e8aa83 100644 --- a/.github/pr_labeler.yml +++ b/.github/pr_labeler.yml @@ -1,14 +1,14 @@ "component:api": - - any: ['awx/**/*', '!awx/ui/*'] + - any: ["awx/**/*", "!awx/ui/**"] "component:ui": - - any: ['awx/ui/**/*'] + - any: ["awx/ui/**/*"] "component:docs": - - any: ['docs/**/*'] + - any: ["docs/**/*"] "component:cli": - - any: ['awxkit/**/*'] + - any: ["awxkit/**/*"] "component:collection": - - any: ['awx_collection/**/*'] + - any: ["awx_collection/**/*"]