From 4db8255e70a22a94e2ae16f87d2594b19dd9aea3 Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Sun, 23 May 2021 08:33:18 -0400 Subject: [PATCH] Fix the grammar in a warning message --- src/upload-artifact.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/upload-artifact.ts b/src/upload-artifact.ts index 3add259..d78e069 100644 --- a/src/upload-artifact.ts +++ b/src/upload-artifact.ts @@ -39,7 +39,7 @@ async function run(): Promise { if (searchResult.filesToUpload.length > 10000) { core.warning( - `There are over 10,000 files in this artifact, consider create an archive before upload to improve the upload performance.` + `There are over 10,000 files in this artifact, consider creating an archive before upload to improve the upload performance.` ) }