We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8753380 commit e2531ecCopy full SHA for e2531ec
1 file changed
.github/workflows/drawio-export.yml
@@ -25,13 +25,16 @@ jobs:
25
path: docs/diagrams
26
format: svg
27
transparent: true
28
+ action-mode: all
29
30
- name: Commit exported SVGs
31
run: |
32
git config --local user.email "github-actions[bot]@users.noreply.github.com"
33
git config --local user.name "github-actions[bot]"
- git add docs/diagrams/*.svg
34
- git diff --staged --quiet || git commit -m "Update exported diagrams [skip ci]"
+ git add docs/diagrams/*.svg || true
35
+ if ! git diff --staged --quiet; then
36
+ git commit -m "Update exported diagrams [skip ci]"
37
+ fi
38
39
- name: Push changes
40
uses: ad-m/github-push-action@master
0 commit comments