From 62afeca1c574cf1b199a00d3e0ba763342e5cb62 Mon Sep 17 00:00:00 2001 From: Johnny Cena Date: Wed, 20 Aug 2025 11:57:05 +0200 Subject: [PATCH] fix error with git not finding anything to commit --- .github/workflows/update_examples.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_examples.yml b/.github/workflows/update_examples.yml index 73809693c..cd8be7eac 100644 --- a/.github/workflows/update_examples.yml +++ b/.github/workflows/update_examples.yml @@ -62,7 +62,7 @@ jobs: git config user.name "github-actions[bot]" git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git add -A - git commit -m "Update examples collection" + git commit -m "Update examples collection" || echo "git exited with code 1, nothing changed" git push shell: bash