https://github.com/angular/angular
Raw File
Tip revision: c92220a5f94043782d6b0eb7e86866192aaab7e3 authored by Andrew Kushnir on 17 May 2023, 18:27:43 UTC
release: cut the v16.0.2 release
Tip revision: c92220a
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