build: add mainBranchName to github configuration (#43061)

Update the ng-dev config for Github to include the main branch name.

PR Close #43061
This commit is contained in:
Joey Perrott 2021-08-11 09:24:13 -07:00 committed by Dylan Hunn
parent 81e4257761
commit 19977b1bf1

View file

@ -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',
};