From 0ee5930076d7359190dcb7292edabd9c7aca2c10 Mon Sep 17 00:00:00 2001 From: Kody Stribrny Date: Fri, 27 Mar 2026 16:11:47 -0700 Subject: [PATCH] Maybe dev changes? --- .github/workflows/auto-release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index c5eff0f72..66eda4e61 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -99,7 +99,11 @@ jobs: working-directory: ./local_kernel run: | git add . - git commit -m '[AUTO][RELEASE]: Update version number in manifest.yml and source files' + if git diff --cached --quiet; then + echo "No changes to commit — source files and manifest already up to date." + else + git commit -m '[AUTO][RELEASE]: Update version number in manifest.yml and source files' + fi git push -u origin "release-prep-$VERSION_NUMBER" - name: Create pull request