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:
parent
7f58c579f3
commit
8524688a87
|
@ -948,7 +948,7 @@ groups:
|
||||||
conditions:
|
conditions:
|
||||||
- *can-be-global-approved
|
- *can-be-global-approved
|
||||||
- >
|
- >
|
||||||
contains_any_globs(files, [
|
contains_any_globs(files.exclude("CHANGELOG.md"), [
|
||||||
'*',
|
'*',
|
||||||
'.circleci/**',
|
'.circleci/**',
|
||||||
'.devcontainer/**',
|
'.devcontainer/**',
|
||||||
|
@ -1020,6 +1020,7 @@ groups:
|
||||||
- >
|
- >
|
||||||
contains_any_globs(files, [
|
contains_any_globs(files, [
|
||||||
'goldens/public-api/**',
|
'goldens/public-api/**',
|
||||||
|
'CHANGELOG.md',
|
||||||
'docs/NAMING.md',
|
'docs/NAMING.md',
|
||||||
'aio/content/guide/glossary.md',
|
'aio/content/guide/glossary.md',
|
||||||
'aio/content/guide/styleguide.md',
|
'aio/content/guide/styleguide.md',
|
||||||
|
|
Loading…
Reference in New Issue