From 79696394be61f21191130e968f436f643ab71848 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Chmiela?= Date: Thu, 14 Nov 2024 16:40:59 +0100 Subject: [PATCH] [eas-cli] Default update message to `undefined` in no-VCS client (#2690) # Why https://staging.expo.dev/accounts/sjchmiela/projects/staging-app/workflows/01932b13-21af-780b-b531-1ed07e3d8228 `eas update --auto` fails in GCS update job because this flag is set to true. # How The comment says it can be `false`, so changed it to `false`. https://github.com/expo/eas-cli/pull/2148/files#diff-a594e233350755033d45aa7b21b78781e4b36322e9312f60e71e7edc79c33a7f # Test Plan Update message should be changed to `undefined`. --- packages/eas-cli/src/vcs/clients/noVcs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eas-cli/src/vcs/clients/noVcs.ts b/packages/eas-cli/src/vcs/clients/noVcs.ts index b8ebee7593..5b3415e9bb 100644 --- a/packages/eas-cli/src/vcs/clients/noVcs.ts +++ b/packages/eas-cli/src/vcs/clients/noVcs.ts @@ -18,6 +18,6 @@ export default class NoVcsClient extends Client { } public override canGetLastCommitMessage(): boolean { - return true; + return false; } }