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 5559e39 commit fd42bbdCopy full SHA for fd42bbd
.github/workflows/ci.yml
@@ -45,9 +45,17 @@ jobs:
45
run: |
46
git config --global user.name 'github-actions[bot]'
47
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
48
+
49
+ # Stage the changes
50
git add metadata.json
- git commit -m "chore: Add plugin metadata"
- git push
51
52
+ # Commit only if there are changes
53
+ if git commit -m "chore: Add plugin metadata"; then
54
+ # Push only if the commit succeeded
55
+ git push
56
+ else
57
+ echo "::notice::No changes to commit."
58
+ fi
59
60
make:
61
needs: prepare
0 commit comments