From aa8027afbc916b49e3e34c483593aa9e2c077c14 Mon Sep 17 00:00:00 2001 From: Javier Bullrich Date: Wed, 6 Mar 2024 14:40:13 +0100 Subject: [PATCH] fixed typo in plurality --- src/github/merger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github/merger.ts b/src/github/merger.ts index 70734e9..86d1a07 100644 --- a/src/github/merger.ts +++ b/src/github/merger.ts @@ -47,7 +47,7 @@ export class Merger { // If it is unstable and allowed, it can also be merged if (error.message.includes("Pull request is in unstable status")) { this.logger.warn( - "PR is unstable! Some non required status check is failing.", + "PR is unstable! Some non required status checks are failing.", ); return this.allowUnstable; }