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

Add skip on no changes option #33

Merged
merged 6 commits into from
Jul 22, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Updating README.md
  • Loading branch information
thsaravana committed Jul 22, 2023
commit 303b7d73bbb2dca4aa77a3b6a8e65c6533d514de
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ Create a workflow `.yml` file in your repositories `.github/workflows` directory

### Inputs

- `paths` - [**required**] Comma separated paths of the generated jacoco xml files.
- `paths` - [**required**] Comma separated paths of the generated jacoco xml files
- `token` - [**required**] Github personal token to add commits to Pull Request
- `min-coverage-overall` - [*optional*] The minimum code coverage that is required to pass for overall project
- `min-coverage-changed-files` - [*optional*] The minimum code coverage that is required to pass for changed files
- `update-comment` - [*optional*] Updates the coverage report comment instead of creating new ones. Requires `title` to work properly.
- `update-comment` - [*optional*] Updates the coverage report comment instead of creating new ones. Requires `title` to work properly
- `title` - [*optional*] Title for the Pull Request comment
- `skip-if-no-changes` - [*optional*] Comment won't be added if there is no coverage information present for the files changed

### Outputs

Expand Down