2020-05-05 18:37:31 -04:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2020-05-05 18:37:31 -04:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as yargs from 'yargs';
|
|
|
|
|
2020-08-14 19:49:07 -04:00
|
|
|
import {CheckoutCommandModule} from './checkout/cli';
|
2020-05-15 11:21:01 -04:00
|
|
|
import {buildDiscoverNewConflictsCommand, handleDiscoverNewConflictsCommand} from './discover-new-conflicts/cli';
|
|
|
|
import {buildMergeCommand, handleMergeCommand} from './merge/cli';
|
2020-05-11 18:21:18 -04:00
|
|
|
import {buildRebaseCommand, handleRebaseCommand} from './rebase/cli';
|
2020-05-05 18:37:31 -04:00
|
|
|
|
2020-05-15 11:21:01 -04:00
|
|
|
/** Build the parser for pull request commands. */
|
2020-05-05 18:37:31 -04:00
|
|
|
export function buildPrParser(localYargs: yargs.Argv) {
|
2020-05-15 11:21:01 -04:00
|
|
|
return localYargs.help()
|
|
|
|
.strict()
|
|
|
|
.demandCommand()
|
|
|
|
.command('merge <pr-number>', 'Merge pull requests', buildMergeCommand, handleMergeCommand)
|
|
|
|
.command(
|
|
|
|
'discover-new-conflicts <pr-number>',
|
|
|
|
'Check if a pending PR causes new conflicts for other pending PRs',
|
|
|
|
buildDiscoverNewConflictsCommand, handleDiscoverNewConflictsCommand)
|
2020-05-11 18:21:18 -04:00
|
|
|
.command(
|
|
|
|
'rebase <pr-number>', 'Rebase a pending PR and push the rebased commits back to Github',
|
2020-08-14 19:49:07 -04:00
|
|
|
buildRebaseCommand, handleRebaseCommand)
|
|
|
|
.command(CheckoutCommandModule);
|
2020-05-05 18:37:31 -04:00
|
|
|
}
|