We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a496f99 commit e106bdeCopy full SHA for e106bde
.github/workflows/maven.yml
@@ -45,6 +45,16 @@ jobs:
45
with:
46
name: jacoco-report
47
path: target/site/jacoco/
48
+ - name: Commit and push
49
+ run: |
50
+ cd badges
51
+ if [[ `git status --porcelain *.svg` ]]; then
52
+ git config --global user.name 'github-actions'
53
+ git config --global user.email 'github-actions[bot]@users.noreply.github.com'
54
+ git add *.svg
55
+ git commit -m "Autogenerated JaCoCo coverage badge" *.svg
56
+ git push
57
+ fi
58
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
59
- name: Update dependency graph
60
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
0 commit comments