File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3333 git config user.name "${{ github.actor }}"
3434 git config user.email "${{ github.actor }}@users.noreply.github.com"
3535 git add packages/modules/display_themes/cards/web
36- git commit -m "Build Display Theme: Cards"
37- git push
36+ if ! git diff --cached --quiet; then
37+ git commit -m "Build Display Theme: Cards"
38+ git push
39+ else
40+ echo "No changes to commit."
41+ fi
Original file line number Diff line number Diff line change 3333 git config user.name "${{ github.actor }}"
3434 git config user.email "${{ github.actor }}@users.noreply.github.com"
3535 git add packages/modules/display_themes/colors/web
36- git commit -m "Build Display Theme: Colors"
37- git push
36+ if ! git diff --cached --quiet; then
37+ git commit -m "Build Display Theme: Colors"
38+ git push
39+ else
40+ echo "No changes to commit."
41+ fi
Original file line number Diff line number Diff line change 3333 git config user.name "${{ github.actor }}"
3434 git config user.email "${{ github.actor }}@users.noreply.github.com"
3535 git add packages/modules/web_themes/colors/web
36- git commit -m "Build Web Theme: Colors"
37- git push
36+ if ! git diff --cached --quiet; then
37+ git commit -m "Build Web Theme: Colors"
38+ git push
39+ else
40+ echo "No changes to commit."
41+ fi
Original file line number Diff line number Diff line change 3333 git config user.name "${{ github.actor }}"
3434 git config user.email "${{ github.actor }}@users.noreply.github.com"
3535 git add packages/modules/web_themes/koala/web
36- git commit -m "Build Web Theme: Koala"
37- git push
36+ if ! git diff --cached --quiet; then
37+ git commit -m "Build Web Theme: Koala"
38+ git push
39+ else
40+ echo "No changes to commit."
41+ fi
You can’t perform that action at this time.
0 commit comments