From 19977b1bf15a78448e2a2dc3b8aeb34d5b68e0dd Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Wed, 11 Aug 2021 09:24:13 -0700 Subject: [PATCH] build: add mainBranchName to github configuration (#43061) Update the ng-dev config for Github to include the main branch name. PR Close #43061 --- .ng-dev/github.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ng-dev/github.ts b/.ng-dev/github.ts index 3425151c945..6af18a58938 100644 --- a/.ng-dev/github.ts +++ b/.ng-dev/github.ts @@ -4,8 +4,8 @@ import {GithubConfig} from '@angular/dev-infra-private/ng-dev/utils/config'; * Github configuration for the `ng-dev` command. This repository is used as * remote for the merge script and other utilities like `ng-dev pr rebase`. */ - export const github: GithubConfig = { owner: 'angular', - name: 'angular' + name: 'angular', + mainBranchName: 'master', };