https://github.com/angular/angular
Raw File
Tip revision: caeb162513dbc4ef830c4928a91c399f262358b6 authored by Dylan Hunn on 20 January 2022, 01:36:11 UTC
release: cut the v13.2.0-rc.0 release (#44765)
Tip revision: caeb162
github.ts
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',
  mainBranchName: 'master',
};
back to top