mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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:
parent
f44fa4be5d
commit
6a5f2dabcd
1 changed files with 7 additions and 1 deletions
|
|
@ -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'],
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue