Skip to content
Snippets Groups Projects
Commit c742ac02 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

refactor(deprecations): add info on how to disable

parent 90af9fc3
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,8 @@ async function raiseDeprecationWarnings(config, packageFiles) {
issueBody += `\n\nAffected package file(s): ${depPackageFiles
.map(f => '`' + f + '`')
.join(', ')}`;
issueBody +=
'\n\n Would you like to disable Renovate\'s deprecation warning issues? Add the following to your config:\n\n```\n"suppressNotifications": ["deprecationWarningIssues"]\n```\n\n';
// istanbul ignore if
if (config.dryRun) {
logger.info('DRY-RUN: Ensure deprecation warning issue for ' + depName);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment