Skip to content

Commit

Permalink
better debugging for dynamic badge action
Browse files Browse the repository at this point in the history
  • Loading branch information
gernotstarke committed Jan 2, 2025
1 parent b77739c commit e7d8c54
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ jobs:
with:
auth: ${{ secrets.DYNAMIC_GIST_ACTION }}
gistID: ${{ secrets.DYNA_GIST_ID }}
filename: minion-testresults.json
filename: pdfminion-test-count.json
label: tests
message: ${{ env.TEST_COUNT }} passed
color: green
message: ${{ env.TEST_COUNT }} ${{ job.status == 'success' && 'passed' || 'failed' }}
color: ${{ job.status == 'success' && 'green' || 'red' }}
if: always()

0 comments on commit e7d8c54

Please sign in to comment.