File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -169,10 +169,10 @@ jobs:
169169 id : check_changes
170170 run : |
171171 cd igniteui-live-editing-samples/${{ matrix.submodule_dir }}
172- if [ -n "$(git status --porcelain)" ]; then
172+ if [ -n "$(git status --porcelain . )" ]; then
173173 echo "changes_detected=true" >> $GITHUB_OUTPUT
174174 echo "Changed files:"
175- git status --porcelain
175+ git status --porcelain .
176176 else
177177 echo "changes_detected=false" >> $GITHUB_OUTPUT
178178 echo "No changes to commit."
@@ -186,6 +186,7 @@ jobs:
186186 git config --global user.email "github-actions[bot]@users.noreply.github.com"
187187 git add .
188188 git commit -m "Automated repository update"
189+ continue-on-error : true
189190
190191 - name : Push changes
191192 if : matrix.repositoryfy == true && steps.check_changes.outputs.changes_detected == 'true'
You can’t perform that action at this time.
0 commit comments