https://github.com/angular/angular
Raw File
Tip revision: 6e6452d604aaecbb292bcbb25242b2ab5edd4a26 authored by Pawel Kozlowski on 20 September 2023, 17:44:29 UTC
release: cut the v16.2.6 release
Tip revision: 6e6452d
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