Skip to content

Commit

Permalink
fix: action fields with default values should not be required
Browse files Browse the repository at this point in the history
Signed-off-by: Tomer Figenblat <tomer.figenblat@gmail.com>
  • Loading branch information
Tomer Figenblat committed May 7, 2022
1 parent 0d00bb1 commit c3f44ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ inputs:
Limits which test suites are listed. Supported options:
- all
- only-failed
required: true
required: false
default: 'all'
list-tests:
description: |
Limits which test cases are listed. Supported options:
- all
- only-failed
- none
required: true
required: false
default: 'all'
max-annotations:
description: |
Limits number of created annotations with error message and stack trace captured during test execution.
Must be less or equal to 50.
required: true
required: false
default: '10'
fail-on-error:
description: Set this action as failed if test report contain any failed test
required: true
required: false
default: 'true'
working-directory:
description: Relative path under $GITHUB_WORKSPACE where the repository was checked out
Expand Down

0 comments on commit c3f44ea

Please sign in to comment.