From 699582eeaf276a35ba5a1373d7d2e28253011e88 Mon Sep 17 00:00:00 2001 From: Seth McCombs <117682158+seth-acuitymd@users.noreply.github.com> Date: Tue, 20 Aug 2024 15:21:32 -0700 Subject: [PATCH] fix !project_id error message typo (#435) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Small change! This error message seems like it's missing a word, so based on the comment on line 202, I changed it from > `⚠️ Failed to a project ID from the given inputs.` to > `⚠️ Failed to compute a project ID from the given inputs` --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 58aa6a05..5e84980c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -202,7 +202,7 @@ export async function run(logger: Logger) { // Set the project ID environment variables to the computed values. if (!projectID) { logger.info( - `⚠️ Failed to a project ID from the given inputs. Neither the ` + + `⚠️ Failed to compute a project ID from the given inputs. Neither the ` + `"project_id" output nor any environment variables will be ` + `exported. If you require these values in other steps, specify the ` + `"project_id" input directly.`,