From 0f9f33074bcbda5a3370f09be060316d6797c65d Mon Sep 17 00:00:00 2001 From: Aseem Bansal Date: Thu, 8 Sep 2022 14:41:12 +0530 Subject: [PATCH] feat(ci): tweak auto-label globs (#5849) --- .github/pr-labeler-config.yml | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/.github/pr-labeler-config.yml b/.github/pr-labeler-config.yml index 893193810d89d1..19e34a0c69c107 100644 --- a/.github/pr-labeler-config.yml +++ b/.github/pr-labeler-config.yml @@ -1,11 +1,29 @@ ingestion: -- any: ['metadata-ingestion/**/*'] +- any: [ + 'metadata-ingestion/*', + 'metadata-ingestion/**/*' +] devops: -- any: ['docker/**/*', '.github/**/*'] +- any: [ + 'docker/*', + 'docker/**/*', + '.github/*', + '.github/**/*' +] product: -- any: ['datahub-frontend/**/*', 'datahub-graphql-core/**/*'] +- any: [ + 'datahub-web-react/*', + 'datahub-web-react/**/*', + 'datahub-frontend/*', + 'datahub-frontend/**/*', + 'datahub-graphql-core/*', + 'datahub-graphql-core/**/*' +] docs: -- any: ['docs/**/*'] \ No newline at end of file +- any: [ + 'docs/*', + 'docs/**/*' +] \ No newline at end of file