build: move CHANGELOG to public-api approval group (#37143)

Previously, the CHANGELOG file was caught under the general
"*" glob, which meant that it fell under the dev-infra
approval group. This does not really make sense since it
has more to do with public-facing changes. As such, this
commit moves the CHANGELOG file specifically to the
public-api approval group.

PR Close #37143
This commit is contained in:
Kara Erickson 2020-05-15 15:00:33 -07:00
parent 7f58c579f3
commit 8524688a87
1 changed files with 2 additions and 1 deletions

View File

@ -948,7 +948,7 @@ groups:
conditions:
- *can-be-global-approved
- >
contains_any_globs(files, [
contains_any_globs(files.exclude("CHANGELOG.md"), [
'*',
'.circleci/**',
'.devcontainer/**',
@ -1020,6 +1020,7 @@ groups:
- >
contains_any_globs(files, [
'goldens/public-api/**',
'CHANGELOG.md',
'docs/NAMING.md',
'aio/content/guide/glossary.md',
'aio/content/guide/styleguide.md',