We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 676a62c commit 6c2ea9dCopy full SHA for 6c2ea9d
.github/workflows/tests_results.yml
@@ -120,7 +120,7 @@ jobs:
120
121
- name: Generate badge
122
if: ${{ !cancelled() && (env.original_event == 'schedule' || env.original_event == 'workflow_dispatch') }}
123
- uses: jaywcjlove/generated-badges@main
+ uses: jaywcjlove/generated-badges@v1.0.13
124
with:
125
label: Runtime Tests
126
status: ${{ job.status }}
@@ -132,6 +132,8 @@ jobs:
132
run: |
133
git config user.name "github-actions[bot]"
134
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
135
- git add --all
136
- git commit -m "Updated runtime tests badge"
137
- git push origin HEAD:gh-pages
+ if [[ `git status --porcelain` ]]; then
+ git add --all
+ git commit -m "Updated runtime tests badge"
138
+ git push origin HEAD:gh-pages
139
+ fi
0 commit comments