We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 510ebc2 commit 09eca36Copy full SHA for 09eca36
.github/workflows/basic-qa.yml
@@ -75,7 +75,11 @@ jobs:
75
incremental_files_only: false
76
77
- name: DEBUG spellcheck output
78
- run: echo ${{ fromJSON(steps.spellcheck.outputs) }}
+ run: |
79
+ echo ${{ steps.spellcheck.outputs.success }}
80
+ echo ${{ steps.spellcheck.outputs.number_of_files_checked }}
81
+ echo ${{ steps.spellcheck.outputs.number_of_issues }}
82
+ echo ${{ steps.spellcheck.outputs.number_of_files_with_issues }}
83
84
# Note: if less issues than expected were found, these numbers should be updated in the PR which fixes the issues!
85
- name: Fail the build when more spelling issues were found than expected
0 commit comments