We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent def9cd2 commit 15118c3Copy full SHA for 15118c3
.github/workflows/registry.yml
@@ -31,9 +31,11 @@ jobs:
31
- run: yarn start
32
33
- name: Commit and Push Changes
34
- run: |
+ run: >-
35
git config --local user.email "github-actions[bot]@users.noreply.github.com"
36
git config --local user.name "github-actions[bot]"
37
- git add ./docs/registry.json
38
- git commit -m "update registry"
39
- git push origin main
+ if [[ `git status --porcelain` ]]; then
+ git add ./docs/registry.json
+ git commit -m "chore: update registry"
40
+ git push origin main
41
+ fi
0 commit comments