Skip to content

Commit 0ee5930

Browse files
committed
Maybe dev changes?
1 parent 4582e77 commit 0ee5930

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/auto-release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,11 @@ jobs:
9999
working-directory: ./local_kernel
100100
run: |
101101
git add .
102-
git commit -m '[AUTO][RELEASE]: Update version number in manifest.yml and source files'
102+
if git diff --cached --quiet; then
103+
echo "No changes to commit — source files and manifest already up to date."
104+
else
105+
git commit -m '[AUTO][RELEASE]: Update version number in manifest.yml and source files'
106+
fi
103107
git push -u origin "release-prep-$VERSION_NUMBER"
104108
105109
- name: Create pull request

0 commit comments

Comments
 (0)