Skip to content

Commit

Permalink
Update README (#30)
Browse files Browse the repository at this point in the history
* Update README

Add more parameters already in actions.yml

* Add note about case sensitivity of words to actions.yml

* Switch to a deliberate typo we're already using

* Check our README separately ignoring the two intentional typos

* Self censor ourselves!
  • Loading branch information
peternewman authored Apr 27, 2021
1 parent 6de8633 commit de08948
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 3 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,14 @@ jobs:
check_filenames: true
check_hidden: true
# When using this Action in other repos, the --skip option below can be removed
skip: ./.git,./codespell-problem-matcher/test,./test
skip: ./.git,./codespell-problem-matcher/test,./test,./README.md,./.github/workflows/testing.yml
# Check our README (and this workflow) ignoring the two intentional typos
- uses: ./
with:
check_filenames: true
check_hidden: true
path: ./README.md,./.github/workflows/testing.yml
ignore_words_list: abandonned,ackward

diagnose_bats:
name: Diagnose bats
Expand Down
38 changes: 38 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,44 @@ with:
skip: foo,bar
```

### Parameter: builtin

Comma-separated list of builtin dictionaries to use.

This parameter is optional; by default `codespell` will use it's default selection of built in dictionaries.

```
uses: codespell-project/actions-codespell@master
with:
builtin: clear,rare
```

### Parameter: ignore_words_file

File that contains words which will be ignored by `codespell`. File must contain one word per line.
Words are case sensitive based on how they are written in the dictionary file.

This parameter is optional; by default `codespell` will check all words for typos.

```
uses: codespell-project/actions-codespell@master
with:
ignore_words_file: .codespellignore
```

### Parameter: ignore_words_list

Comma-separated list of words which will be ignored by `codespell`.
Words are case sensitive based on how they are written in the dictionary file.

This parameter is optional; by default `codespell` will check all words for typos.

```
uses: codespell-project/actions-codespell@master
with:
ignore_words_list: abandonned,ackward
```

### Parameter: path

Indicates the path to run `codespell` in.
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ inputs:
required: false
default: ''
ignore_words_file:
description: 'File with a list of words to be ignored'
description: 'File with a list of words to be ignored. Words are case sensitive based on how they are written in the dictionary file'
required: false
default: ''
ignore_words_list:
description: 'Comma-separated list of words to be ignored'
description: 'Comma-separated list of words to be ignored. Words are case sensitive based on how they are written in the dictionary file'
required: false
default: ''
path:
Expand Down

0 comments on commit de08948

Please sign in to comment.