build: exclude devtools scope from generated changelogs (#44964)

The devtools scoped commits are not included in the repository's CHANGELOG.md
file as these commits are not references areas which are included in the
primary released artifacts.

PR Close #44964
This commit is contained in:
Joey Perrott 2022-02-03 12:14:48 -08:00 committed by Dylan Hunn
parent f44fa4be5d
commit 6a5f2dabcd

View file

@ -30,7 +30,13 @@ export const release: ReleaseConfig = {
return buildTargetPackages('dist/release-output', false, 'Release', /* isRelease */ true);
},
releaseNotes: {
hiddenScopes: ['aio', 'dev-infra', 'docs-infra', 'zone.js'],
hiddenScopes: [
'aio',
'dev-infra',
'docs-infra',
'zone.js',
'devtools',
],
},
releasePrLabels: ['comp: build & ci', 'action: merge', 'PullApprove: disable'],
};