From 6b173fbc90bae96dafa04f4355a01762ca735949 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Wed, 27 Oct 2021 16:57:58 +0200 Subject: [PATCH] fixup! feat(cli): prompt user when landing PR with several commits MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Michaƫl Zasso --- lib/landing_session.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/landing_session.js b/lib/landing_session.js index baa3d927..8d4ba039 100644 --- a/lib/landing_session.js +++ b/lib/landing_session.js @@ -368,7 +368,7 @@ class LandingSession extends Session { const stray = this.getStrayCommits(); if (stray.length > 1) { const forceLand = await cli.prompt( - 'There are more than one commit in the PR. ' + + 'There is more than one commit in the PR. ' + 'Do you still want to land it?', { defaultAnswer: !oneCommitMax });