From 17d2c8d7fa67f1552bf6829e49c33152d46eece5 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Tue, 19 Jan 2021 12:32:46 -0800 Subject: [PATCH] build: ensure action: merge label is included on release PRs (#40016) The release PRs should include the `action: merge`, `PullApprove: disable` and `comp: build & ci` labels. PR Close #40016 --- .ng-dev/release.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ng-dev/release.ts b/.ng-dev/release.ts index 49aa2af849..d896fc9adb 100644 --- a/.ng-dev/release.ts +++ b/.ng-dev/release.ts @@ -32,4 +32,7 @@ export const release: ReleaseConfig = { generateReleaseNotesForHead: async () => { exec('yarn -s gulp changelog', {cwd: join(__dirname, '../')}); }, + // The `comp: *` labels will be automatically added by PullApprove and the targeting label will + // be added by the release tooling, only `action: merge` must be manually included to the list. + releasePrLabels: ['comp: build & ci', 'action: merge', 'PullApprove: disable'], };