Skip to content

Commit

Permalink
Merge pull request #11 from codespell-project/peternewman-docs
Browse files Browse the repository at this point in the history
Update the docs
  • Loading branch information
larsoner authored Jun 10, 2020
2 parents 05adf77 + 05ab9ab commit 5cce0c1
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 4 deletions.
54 changes: 51 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,55 @@ Any warnings or errors will be annotated in the Pull Request.
## Usage

```
uses: peternewman/actions-codespell@master
uses: codespell-project/actions-codespell@master
```

### Parameter: check_filenames

If set, check file names for spelling mistakes as well.

This parameter is optional; by default `codespell` will only check the file contents.

```
uses: codespell-project/actions-codespell@master
with:
check_filenames: true
```

### Parameter: check_hidden

If set, check hidden files (those starting with ".") for spelling mistakes as well.

This parameter is optional; by default `codespell` will not check hidden files.

```
uses: codespell-project/actions-codespell@master
with:
check_hidden: true
```

### Parameter: exclude_file

File with lines that should not be checked for spelling mistakes.

This parameter is optional; by default `codespell` will check all lines.

```
uses: codespell-project/actions-codespell@master
with:
exclude_file: src/foo
```

### Parameter: skip

Comma-separated list of files to skip (it accepts globs as well).

This parameter is optional; by default `codespell` won't skip any files.

```
uses: codespell-project/actions-codespell@master
with:
skip: foo,bar
```

### Parameter: path
Expand All @@ -17,7 +65,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.

```
uses: peternewman/actions-codespell@master
uses: codespell-project/actions-codespell@master
with:
path: src
```
Expand All @@ -31,7 +79,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.

```
uses: peternewman/actions-codespell@master
uses: codespell-project/actions-codespell@master
with:
only_warn: 1
```
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
required: false
default: ''
exclude_file:
description: 'FILE with lines that should not be changed'
description: 'File with lines that should not be checked for spelling mistakes'
required: false
default: ''
skip:
Expand Down

0 comments on commit 5cce0c1

Please sign in to comment.