51 lines
1.5 KiB
TypeScript
51 lines
1.5 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 {Arguments, Argv, CommandModule} from 'yargs';
|
|
|
|
import {info} from '../../utils/console';
|
|
|
|
import {validateCommitRange} from './validate-range';
|
|
|
|
|
|
export interface ValidateRangeOptions {
|
|
range: string;
|
|
}
|
|
|
|
/** Builds the command. */
|
|
function builder(yargs: Argv) {
|
|
return yargs.option('range', {
|
|
description: 'The range of commits to check, e.g. --range abc123..xyz456',
|
|
demandOption: ' A range must be provided, e.g. --range abc123..xyz456',
|
|
type: 'string',
|
|
requiresArg: true,
|
|
});
|
|
}
|
|
|
|
/** Handles the command. */
|
|
async function handler({range}: Arguments<ValidateRangeOptions>) {
|
|
// If on CI, and no pull request number is provided, assume the branch
|
|
// being run on is an upstream branch.
|
|
if (process.env['CI'] && process.env['CI_PULL_REQUEST'] === 'false') {
|
|
info(`Since valid commit messages are enforced by PR linting on CI, we do not`);
|
|
info(`need to validate commit messages on CI runs on upstream branches.`);
|
|
info();
|
|
info(`Skipping check of provided commit range`);
|
|
return;
|
|
}
|
|
validateCommitRange(range);
|
|
}
|
|
|
|
/** yargs command module describing the command. */
|
|
export const ValidateRangeModule: CommandModule<{}, ValidateRangeOptions> = {
|
|
handler,
|
|
builder,
|
|
command: 'validate-range',
|
|
describe: 'Validate a range of commit messages',
|
|
};
|