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 1ee3cae commit a9468bdCopy full SHA for a9468bd
.github/workflows/processor.yml
@@ -40,5 +40,9 @@ jobs:
40
git config --global user.name "github-actions[bot]"
41
git config --global user.email "github-actions[bot]@users.noreply.github.com"
42
git add .
43
- git commit -m "Update mint.json with new OpenAPI data"
44
- git push origin main
+ if git diff --cached --quiet; then
+ echo "No changes to commit"
45
+ else
46
+ git commit -m "Update mint.json with new OpenAPI data"
47
+ git push origin main
48
+ fi
0 commit comments