mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
5f935eee58
Start requiring the usage of the release merge-mode for allowing releases to be made from the repository
(cherry picked from commit 4d6a6aafee)
14 lines
377 B
JavaScript
14 lines
377 B
JavaScript
/**
|
|
* 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`.
|
|
*
|
|
* @type { import("@angular/ng-dev").GithubConfig }
|
|
*/
|
|
export const github = {
|
|
owner: 'angular',
|
|
name: 'angular',
|
|
mainBranchName: 'main',
|
|
mergeMode: 'caretaker-only',
|
|
requireReleaseModeForRelease: true,
|
|
};
|