renovate/lib/util/ignore.ts
RahulGautamSingh ee2e155f1f
fix: modify regex to be re2 compatbile (#12778)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2021-11-29 19:16:05 +00:00

13 lines
379 B
TypeScript

import { logger } from '../logger';
import { regEx } from './regex';
export function isSkipComment(comment?: string): boolean {
if (regEx(/^(renovate|pyup):/).test(comment)) {
const command = comment.split('#')[0].split(':')[1].trim();
if (command === 'ignore') {
return true;
}
logger.debug('Unknown comment command: ' + command);
}
return false;
}