From f511942a4acdf8f2fcfe21ff307d5d39e92e5b95 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Mon, 26 Aug 2019 07:57:51 +0200 Subject: [PATCH] chore(master-issue): improve section descriptions --- lib/workers/repository/master-issue.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/workers/repository/master-issue.js b/lib/workers/repository/master-issue.js index c99dc4612a..27c1001df7 100644 --- a/lib/workers/repository/master-issue.js +++ b/lib/workers/repository/master-issue.js @@ -91,7 +91,7 @@ async function ensureMasterIssue(config, branches) { if (rateLimited.length) { issueBody += '## Rate Limited\n\n'; issueBody += - 'These updates are currently rate limited. Click on a checkbox below to override.\n\n'; + 'These updates are currently rate limited. Click on a checkbox below to force their creation now.\n\n'; for (const branch of rateLimited) { issueBody += getListItem(branch, 'unlimit'); } @@ -115,7 +115,7 @@ async function ensureMasterIssue(config, branches) { if (awaitingPr.length) { issueBody += '## PR Creation Approval Required\n\n'; issueBody += - "These branches exist but PRs won't be created until you tick the checkbox.\n\n"; + "These branches exist but PRs won't be created until you approve by ticking the checkbox.\n\n"; for (const branch of awaitingPr) { issueBody += getListItem(branch, 'approvePr'); } -- GitLab