Skip to content

Commit 13162cc

Browse files
committed
no nothing personal
Change-Id: I046ef66337e3d1a633779b8dd46af181bccc878d
1 parent 0bed233 commit 13162cc

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/linearize_main.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ jobs:
6161
rm -rf automated_commits_m114.json
6262
git stash pop
6363
git add --ignore-removal automated_commits_m114.json
64-
git commit -m "Linearization refresh on $(date +'%Y-%m-%d')."
65-
git push --force origin experimental/rebase_tools:experimental/rebase_tools
66-
#NOTHING PERSONAL
64+
if git diff --quiet --cached; then
65+
echo "No changes detected. Nothing to update."
66+
else
67+
git commit -m "Linearization refresh on $(date +'%Y-%m-%d')."
68+
git push --force origin experimental/rebase_tools:experimental/rebase_tools
69+
fi

0 commit comments

Comments
 (0)