mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-22 06:41:45 +08:00
The dev-infra build tooling is now decoupled from `ng-dev`. This will make it easier to update `ng-dev` without necessarily needing to upgrade the whole build system, Bazel etc. This is useful when e.g. new release tool features have been added and should also be ported to active LTS branches.
16 lines
501 B
TypeScript
16 lines
501 B
TypeScript
import { PullRequestConfig } from '@angular/ng-dev';
|
|
|
|
/**
|
|
* Configuration for the merge tool in `ng-dev`. This sets up the labels which
|
|
* are respected by the merge script (e.g. the target labels).
|
|
*/
|
|
export const pullRequest: PullRequestConfig = {
|
|
githubApiMerge: {
|
|
default: 'rebase',
|
|
labels: [{ pattern: 'squash commits', method: 'squash' }],
|
|
},
|
|
mergeReadyLabel: 'action: merge',
|
|
caretakerNoteLabel: 'action: merge-assistance',
|
|
commitMessageFixupLabel: 'needs commit fixup',
|
|
};
|