From 750d742009777301acf15bf2dc3bec136a1aaec1 Mon Sep 17 00:00:00 2001 From: pooneyy <85266337+pooneyy@users.noreply.github.com> Date: Tue, 7 Oct 2025 22:58:02 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(workflow):=20remove=20cond?= =?UTF-8?q?itional=20execution=20from=20version=20update?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - remove `|| true` from git push command to ensure workflow fails on push errors --- .github/workflows/renovate-app-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/renovate-app-version.yml b/.github/workflows/renovate-app-version.yml index f527b14df..7946344fe 100644 --- a/.github/workflows/renovate-app-version.yml +++ b/.github/workflows/renovate-app-version.yml @@ -99,7 +99,7 @@ jobs: if [ -f "apps/$app_name/${old_version}.version" ]; then new_version=$(cat "apps/$app_name/${old_version}.version") rm -f "apps/$app_name/${old_version}.version" - git add "apps/$app_name/*" && git commit -m "🔧 chore($app_name): update app version from $old_version to $new_version" --no-verify && git push || true + git add "apps/$app_name/*" && git commit -m "🔧 chore($app_name): update app version from $old_version to $new_version" --no-verify && git push gh api --silent --method POST -H "Accept: application/vnd.github+json" \ -H "X-GitHub-Api-Version: 2022-11-28" \ /repos/${{ github.repository }}/statuses/$(git show -s --format=%H) \