From b1e8c1a6e59fe9c0db1e6cd07e051a6f2517238c Mon Sep 17 00:00:00 2001 From: yatinappsmith <84702014+yatinappsmith@users.noreply.github.com> Date: Wed, 3 Jan 2024 13:27:35 +0530 Subject: [PATCH] CI: fix empty commit failures for server build (#29997) fix empty commit failures for server build ## Summary by CodeRabbit - **Chores** - Updated the server build workflow to allow commits with empty messages. --- .github/workflows/server-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/server-build.yml b/.github/workflows/server-build.yml index 7cb90828dd..89b93d939d 100644 --- a/.github/workflows/server-build.yml +++ b/.github/workflows/server-build.yml @@ -290,7 +290,7 @@ jobs: cp ../../../../../server.jar ./ git lfs track "server.jar" git add server.jar - git commit -m "Update Latest Server.jar" + git commit --allow-empty -m "Update Latest Server.jar" git push - name: Save the status of the run