Skip to content

Commit

Permalink
- add information on action output
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepenz committed Jul 15, 2022
1 parent 1f5921d commit b76182b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,23 @@ jobs:
| `update_check` | Optional. Uses an alternative API to update checks, use for cases with more than 50 annotations. |
| `annotate_only` | Optional. Will only annotate the results on the files, won't create a check run. |

### Action outputs

After action execution it will return the test counts as output.

```yml
# ${{steps.{CHANGELOG_STEP_ID}.outputs.total}}
```

A full set list of possible output values for this action.

| **Output** | **Description** |
|-----------------------|----------------------------------------------------------------------------------------|
| `outputs.total` | The total number of test cases covered by this test-step. |
| `outputs.passed` | The number of passed test cases. |
| `outputs.skipped` | The number of skipped test cases. |
| `outputs.failed` | Then umber of failed test cases. |

## Sample 🖥️

<div align="center">
Expand Down

0 comments on commit b76182b

Please sign in to comment.