mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit updates the github.mjs configuration to set requireReleaseModeForRelease to false, removing the requirement to use release mode for releases in the angular/angular repository.
(cherry picked from commit a6941adce8)
13 lines
378 B
JavaScript
13 lines
378 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: false,
|
|
};
|