Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow the version of the cli that's installed to be set by configuration. #176

Merged
merged 8 commits into from
Oct 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ Default is '1'.

Set this option '0', only annotation is enabled, action will not failed when issue is exists.

### version

Default is '2021.1.5'.

Set this option to change the version of the Resharper CLI that's installed.

## Usage

```yaml
Expand Down
6 changes: 5 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ inputs:
failOnIssue:
required: false
default: '1'
description: 'action fail when issue exists'
description: 'action fail when issue exists'
version:
required: false
description: 'input solution file path here'
default: '2021.1.5'
runs:
using: 'node12'
main: 'dist/index.js'
Expand Down
Loading