From ebc80b3b5c6d05d11093aadeab4c893119ee16cf Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Tue, 6 Apr 2021 09:02:42 -0700 Subject: [PATCH] build: add breakingChangesLabel to merge configuration (#41546) Sets the breakingChangesLabel property to properly confirm breaking changes. PR Close #41546 --- .ng-dev/merge.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/.ng-dev/merge.ts b/.ng-dev/merge.ts index 768b7e7307..9dcd099684 100644 --- a/.ng-dev/merge.ts +++ b/.ng-dev/merge.ts @@ -14,6 +14,7 @@ export const merge: DevInfraMergeConfig['merge'] = async api => { mergeReadyLabel: /^action: merge(-assistance)?/, caretakerNoteLabel: /^(action: merge-assistance)|(PullApprove: disable)/, commitMessageFixupLabel: 'commit message fixup', + breakingChangeLabel: 'flag: breaking change', // We can pick any of the NPM packages as we are in a monorepo where all packages are // published together with the same version and branching. labels: await getDefaultTargetLabelConfiguration(api, github, release),