-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: add caretaker configuration to ng-dev config
Add the caretaker configuration to set up being able to run both the carataker check and the handoff commands. The caretaker handoff command will operate using the angular-cli-caretaker group which has already been seeded with the current information. (cherry picked from commit 3d76cef)
- Loading branch information
1 parent
6e7ad3e
commit 588b742
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { CaretakerConfig } from '@angular/dev-infra-private/ng-dev'; | ||
|
||
/** The configuration for `ng-dev caretaker` commands. */ | ||
export const caretaker: CaretakerConfig = { | ||
githubQueries: [ | ||
{ | ||
name: 'Merge Queue', | ||
query: `is:pr is:open status:success label:"action: merge"`, | ||
}, | ||
{ | ||
name: 'Merge Assistance Queue', | ||
query: `is:pr is:open label:"action: merge-assistance"`, | ||
}, | ||
], | ||
caretakerGroup: 'angular-cli-caretaker', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters