From db1c48ff3610709321d5e4eade9d54ee6f18dc54 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Mon, 2 Nov 2020 10:06:31 -0800 Subject: [PATCH] ci: only check testing directories within packages/ for fw-testing (#39536) The fw-testing group should only match on testing directories within the framework packages, previously it was also matching in other areas of the codebase. PR Close #39536 --- .pullapprove.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pullapprove.yml b/.pullapprove.yml index d94aa170c7..dceeffd60d 100644 --- a/.pullapprove.yml +++ b/.pullapprove.yml @@ -657,7 +657,7 @@ groups: - *can-be-global-docs-approved - > contains_any_globs(files.exclude('packages/compiler-cli/**'), [ - '**/testing/**', + 'packages/**/testing/**', 'aio/content/guide/testing.md', 'aio/content/guide/test-debugging.md', 'aio/content/guide/testing-attribute-directives.md',