We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 161c04d commit 1fb9e66Copy full SHA for 1fb9e66
.github/workflows/audits.yml
@@ -185,6 +185,6 @@ jobs:
185
run: |
186
git config user.name "github-actions[bot]"
187
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
188
- git add .
189
- git commit -m "docs(implementations): audit report [skip ci]" || echo "::notice::Nothing new to report" && exit 0
190
- git push
+ [ -z "$(git status --porcelain)" ] \
+ && echo "::notice::Nothing new to report" \
+ || (git add . && git commit -m "docs(implementations): audit report [skip ci]" && git push)
0 commit comments