Select Git revision
errors-warnings.ts
errors-warnings.ts 4.39 KiB
// TODO #22198
import type { RenovateConfig } from '../../config/types';
import { logger } from '../../logger';
import type { PackageFile } from '../../modules/manager/types';
import { coerceArray } from '../../util/array';
import { emojify } from '../../util/emoji';
import { regEx } from '../../util/regex';
import type { DepWarnings } from '../types';
export function getWarnings(config: RenovateConfig): string {
if (!config.warnings?.length) {
return '';
}
let warningText = `\n# Warnings (${config.warnings.length})\n\n`;
warningText += `Please correct - or verify that you can safely ignore - these warnings before you merge this PR.\n\n`;
for (const w of config.warnings) {
warningText += `- \`${w.topic}\`: ${w.message}\n`;
}
warningText += '\n---\n';
return warningText;
}
export function getErrors(config: RenovateConfig): string {
if (!config.errors?.length) {
return '';
}
let errorText = `\n# Errors (${config.errors.length})\n\n`;
errorText += `Renovate has found errors that you should fix (in this branch) before finishing this PR.\n\n`;
for (const e of config.errors) {
errorText += `- \`${e.topic}\`: ${e.message}\n`;
}
errorText += '\n---\n';
return errorText;
}
function getDepWarnings(
packageFiles: Record<string, PackageFile[]>
): DepWarnings {
const warnings: string[] = [];
const warningFiles: string[] = [];
for (const files of Object.values(packageFiles ?? {})) {
for (const file of files ?? []) {
// TODO: remove condition when type is fixed (#22198)
if (file.packageFile) {
for (const dep of coerceArray(file.deps)) {
for (const w of coerceArray(dep.warnings)) {
const message = w.message;
if (!warnings.includes(message)) {
warnings.push(message);
}
if (!warningFiles.includes(file.packageFile)) {
warningFiles.push(file.packageFile);
}
}
}
}
}
}
if (warnings.length) {
logger.warn({ warnings, files: warningFiles }, 'Package lookup failures');
}
return { warnings, warningFiles };
}
export function getDepWarningsOnboardingPR(
packageFiles: Record<string, PackageFile[]>,
config: RenovateConfig
): string {
const { warnings, warningFiles } = getDepWarnings(packageFiles);
if (config.suppressNotifications?.includes('dependencyLookupWarnings')) {