generated from reviewdog/action-template
-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from tsuyoshicho/fix/param-20201222
Update mypy_flags
- Loading branch information
Showing
2 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,34 +4,42 @@ author: 'Tsuyoshi CHO <[email protected]>' | |
inputs: | ||
github_token: | ||
description: 'GITHUB_TOKEN' | ||
required: false | ||
default: '${{ github.token }}' | ||
workdir: | ||
description: 'Working directory relative to the root directory.' | ||
required: false | ||
default: '.' | ||
### Flags for reviewdog ### | ||
level: | ||
description: 'Report level for reviewdog [info,warning,error]' | ||
required: false | ||
default: 'error' | ||
reporter: | ||
description: 'Reporter of reviewdog command [github-pr-check,github-pr-review].' | ||
required: false | ||
default: 'github-pr-check' | ||
filter_mode: | ||
description: | | ||
Filtering mode for the reviewdog command [added,diff_context,file,nofilter]. | ||
Default is added. | ||
required: false | ||
default: 'added' | ||
fail_on_error: | ||
description: | | ||
Exit code for reviewdog when errors are found [true,false] | ||
Default is `false`. | ||
required: false | ||
default: 'false' | ||
reviewdog_flags: | ||
description: 'Additional reviewdog flags' | ||
required: false | ||
default: '' | ||
### Flags for mypy ### | ||
mypy_flags: | ||
description: 'mypy options (default: --strict --strict-equality)' | ||
default: '--strict --strict-equality' | ||
description: 'mypy options (default: <none>)' | ||
required: false | ||
default: '' | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
|