From 0aab31db9f041cc522815480710d6fe3510f088c Mon Sep 17 00:00:00 2001 From: Bastian Doetsch Date: Thu, 20 Jun 2024 13:50:16 +0200 Subject: [PATCH] fix: nothing to commit --- .github/create-cli-pr.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/create-cli-pr.sh b/.github/create-cli-pr.sh index 7de8cb7fd..15572cc42 100755 --- a/.github/create-cli-pr.sh +++ b/.github/create-cli-pr.sh @@ -41,7 +41,8 @@ pushd $CLI_DIR echo $PUB_SIGNING_KEY > signingkey.pub git config --global user.signingkey ./signingkey.pub - git commit -am "feat: automatic integration of language server $LS_VERSION" + git commit -am "feat: automatic integration of language server $LS_VERSION" || echo "No files to commit" && exit 0 + git push -f --set-upstream origin $BRANCH TITLE="feat(language-server): integrate LS"