Revision 92a1e59529f6746dc3822c31cade0380474f84bf authored by Andrew Kushnir on 01 May 2024, 18:44:11 UTC, committed by Andrew Kushnir on 01 May 2024, 18:47:42 UTC
1 parent 78e4af0
Raw File
github.mts
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,
};
back to top