Creates a tool within ng-dev to checkout a pending PR from the upstream repository. This automates an action that many developers on the Angular team need to do periodically in the process of testing and reviewing incoming PRs. Example usage: ng-dev pr checkout <pr-number> PR Close #38474
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC All Rights Reserved.
 | |
|  *
 | |
|  * 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';
 | |
| 
 | |
| import {CheckoutCommandModule} from './checkout/cli';
 | |
| import {buildDiscoverNewConflictsCommand, handleDiscoverNewConflictsCommand} from './discover-new-conflicts/cli';
 | |
| import {buildMergeCommand, handleMergeCommand} from './merge/cli';
 | |
| import {buildRebaseCommand, handleRebaseCommand} from './rebase/cli';
 | |
| 
 | |
| /** Build the parser for pull request commands. */
 | |
| export function buildPrParser(localYargs: yargs.Argv) {
 | |
|   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)
 | |
|       .command(
 | |
|           'rebase <pr-number>', 'Rebase a pending PR and push the rebased commits back to Github',
 | |
|           buildRebaseCommand, handleRebaseCommand)
 | |
|       .command(CheckoutCommandModule);
 | |
| }
 | |
| 
 | |
| if (require.main === module) {
 | |
|   buildPrParser(yargs).parse();
 | |
| }
 |