From 6a5f2dabcd61c335fe8da85bac41fa7cdb83b575 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Thu, 3 Feb 2022 12:14:48 -0800 Subject: [PATCH] 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 --- .ng-dev/release.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.ng-dev/release.ts b/.ng-dev/release.ts index 50ef24ecf33..d05bed94d64 100644 --- a/.ng-dev/release.ts +++ b/.ng-dev/release.ts @@ -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'], };