mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
408aed7a75
Enable the auth service for merging into the repository PR Close #48361
13 lines
343 B
TypeScript
13 lines
343 B
TypeScript
import {GithubConfig} from '@angular/ng-dev';
|
|
|
|
/**
|
|
* 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: 'main',
|
|
useNgDevAuthService: true,
|
|
};
|