Skip to content

Commit

Permalink
Use v2 in README (#69)
Browse files Browse the repository at this point in the history
It looks like v2 is already released, so README should point it instead of v1.
  • Loading branch information
okuramasafumi authored Aug 18, 2023
1 parent 94259cd commit 41170f1
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Any warnings or errors will be annotated in the Pull Request.
## Usage

```yml
uses: codespell-project/actions-codespell@v1
uses: codespell-project/actions-codespell@v2
```
### Parameter: check_filenames
Expand All @@ -16,7 +16,7 @@ If set, check file names for spelling mistakes as well.
This parameter is optional; by default `codespell` will only check the file contents.

```yml
uses: codespell-project/actions-codespell@v1
uses: codespell-project/actions-codespell@v2
with:
check_filenames: true
```
Expand All @@ -28,7 +28,7 @@ If set, check hidden files (those starting with ".") for spelling mistakes as we
This parameter is optional; by default `codespell` will not check hidden files.

```yml
uses: codespell-project/actions-codespell@v1
uses: codespell-project/actions-codespell@v2
with:
check_hidden: true
```
Expand All @@ -40,7 +40,7 @@ File with lines that should not be checked for spelling mistakes.
This parameter is optional; by default `codespell` will check all lines.

```yml
uses: codespell-project/actions-codespell@v1
uses: codespell-project/actions-codespell@v2
with:
exclude_file: src/foo
```
Expand All @@ -52,7 +52,7 @@ Comma-separated list of files to skip (it accepts globs as well).
This parameter is optional; by default `codespell` won't skip any files.

```yml
uses: codespell-project/actions-codespell@v1
uses: codespell-project/actions-codespell@v2
with:
skip: foo,bar
```
Expand All @@ -64,7 +64,7 @@ Comma-separated list of builtin dictionaries to use.
This parameter is optional; by default `codespell` will use its default selection of built in dictionaries.

```yml
uses: codespell-project/actions-codespell@v1
uses: codespell-project/actions-codespell@v2
with:
builtin: clear,rare
```
Expand All @@ -77,7 +77,7 @@ 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.

```yml
uses: codespell-project/actions-codespell@v1
uses: codespell-project/actions-codespell@v2
with:
ignore_words_file: .codespellignore
```
Expand All @@ -90,7 +90,7 @@ 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.

```yml
uses: codespell-project/actions-codespell@v1
uses: codespell-project/actions-codespell@v2
with:
ignore_words_list: abandonned,ackward
```
Expand All @@ -104,7 +104,7 @@ If set to "*", all misspelling in URIs and emails will be ignored.
This parameter is optional; by default `codespell` will check all URIs and emails for typos.

```yml
uses: codespell-project/actions-codespell@v1
uses: codespell-project/actions-codespell@v2
with:
uri_ignore_words_list: abandonned
```
Expand All @@ -117,7 +117,7 @@ This can be useful if your project has code you don't want to spell check for so
This parameter is optional; by default `codespell` will run on your whole repository.

```yml
uses: codespell-project/actions-codespell@v1
uses: codespell-project/actions-codespell@v2
with:
path: src
```
Expand All @@ -131,7 +131,7 @@ All errors and warnings are annotated in Pull Requests, but it will act like eve
This parameter is optional; setting this to any value will enable it.

```yml
uses: codespell-project/actions-codespell@v1
uses: codespell-project/actions-codespell@v2
with:
only_warn: 1
```

0 comments on commit 41170f1

Please sign in to comment.