Skip to content

Commit

Permalink
auto
Browse files Browse the repository at this point in the history
  • Loading branch information
Houssem Dellai committed Aug 27, 2023
1 parent b0bf60f commit 556ff00
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:

- uses: streetsidesoftware/cspell-action@v3
name: Spell Check
id: spellcheck
continue-on-error: true
with:
# Github token used to fetch the list of changed files in the commit.
Expand Down Expand Up @@ -67,3 +68,30 @@ jobs:
# Log progress and other information during the action execution.
# Default: false
verbose: false

# outputs:
# success:
# description: |
# "true" if no spelling issues were found, otherwise "false".
# number_of_files_checked:
# description: |
# The actual number of files that were checked.
# number_of_issues:
# description: |
# The number of issues found.
# number_of_files_with_issues:
# description: |
# The number of files that had issues.
# files_with_issues:
# description: |
# List of files with issues. Use `fromJSON()` to decode.
# The files are relative to the repository root.
# results:
# description: |
# The JSON encoded results.

- run: |
echo ${{ steps.spellcheck.outputs.results }}
echo ${{ steps.spellcheck.outputs.number_of_files_checked }}
echo ${{ steps.spellcheck.outputs.number_of_files_with_issues }}
echo ${{ steps.spellcheck.outputs.files_with_issues }}

0 comments on commit 556ff00

Please sign in to comment.