forked from streetsidesoftware/cspell-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusage.yaml
37 lines (31 loc) · 1.22 KB
/
usage.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
- uses: streetsidesoftware/cspell-action@v1
with:
# Github token used to fetch the list of changed files in the commit.
# Default: ${{ github.token }}
github_token: ""
# Define glob patterns to filter the files to be checked. Use a new line between patterns to define multiple patterns.
# The default is to check ALL files that were changed in in the pull_request or push.
# Note: `ignorePaths` defined in cspell.json still apply.
# Example:
# files: |
# **/*.{ts,js}
# !dist/**/*.{ts,js}
# # Hidden directories need an explicit .* to be included
# .*/**/*.yml
files: ""
# Limit the files checked to the ones in the pull request or push.
incremental_files_only: "true"
# Path to the `cspell.json` config file.
# Default: ./cspell.json
config: ""
# The point in the directory tree to start spell checking.
# Default: .
root: "."
# Notification level to use with inline reporting of spelling errors.
# Allowed values are: warning, error, none
# Default: warning
inline: warning
# Determines if the action should be failed if any spelling issues are found.
# Allowed values are: true, false
# Default: true
strict: true