From 8424209c48621c1e21984acc06cbfe64cc34a55e Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Fri, 13 Aug 2021 11:52:51 -0700 Subject: [PATCH] build: add mainBranchName to Github configuration (#23368) --- .ng-dev/github.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.ng-dev/github.ts b/.ng-dev/github.ts index 6044405172d1..b48fd6c7fa35 100644 --- a/.ng-dev/github.ts +++ b/.ng-dev/github.ts @@ -6,5 +6,6 @@ import {GithubConfig} from '@angular/dev-infra-private/ng-dev/utils/config'; */ export const github: GithubConfig = { owner: 'angular', - name: 'components' + name: 'components', + mainBranchName: 'master', };