From b54db86f43e10f4e372f337b9823632ef7202ebf Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Tue, 24 Mar 2020 10:52:07 -0700 Subject: [PATCH] build: fix bad pullapprove rule (#36232) The dev-infra pull approve group contained a condition with the glob having a string concatenation rather than a comma separated list. This corrects this error, and in another PR we will correct the verification scripts failure to catch this. PR Close #36232 --- .pullapprove.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pullapprove.yml b/.pullapprove.yml index 1f63de6385..ef53b80c4c 100644 --- a/.pullapprove.yml +++ b/.pullapprove.yml @@ -952,7 +952,7 @@ groups: 'tools/build/**', 'tools/circular_dependency_test/**', 'tools/contributing-stats/**', - 'tools/components/**' + 'tools/components/**', 'tools/gulp-tasks/**', 'tools/ng_rollup_bundle/**', 'tools/ngcontainer/**',