From ab12ac9a986ea126952c9200c144350b89aacf08 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Fri, 6 Sep 2019 22:50:00 +0200
Subject: [PATCH] fix: remove artifact error content from PR comments

---
 lib/workers/branch/index.js | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/lib/workers/branch/index.js b/lib/workers/branch/index.js
index fcbfd0b491..8dc43b5220 100644
--- a/lib/workers/branch/index.js
+++ b/lib/workers/branch/index.js
@@ -437,11 +437,6 @@ async function processBranch(branchConfig, prHourlyLimitReached, packageFiles) {
           ' - you check the rebase/retry checkbox if found above, or\n';
         content +=
           ' - you rename this PR\'s title to start with "rebase!" to trigger it manually';
-        content += '\n\nThe artifact failure details are included below:\n\n';
-        config.artifactErrors.forEach(error => {
-          content += `##### File name: ${error.lockFile}\n\n`;
-          content += `\`\`\`\n${error.stderr}\n\`\`\`\n\n`;
-        });
         if (
           !(
             config.suppressNotifications.includes('artifactErrors') ||
-- 
GitLab