Skip to content

Commit

Permalink
release: v0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassabreu committed Dec 20, 2024
1 parent b1e1f30 commit 46f3720
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.15.1] - 2024-12-20

### Fixed
- increase and decrease default icons were wrong and don't exist

## [0.15.0] - 2024-12-20

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ Configuration
| `github-token` | Custom [PAT][pat] to be used instead of the [default action token][default-token], should have the `repo` scope |
| `skip-comments-on-forks` | Should skip trying to comment on [pull requests created from forks](#restrictions-on-forks) <br/> Default: `false` |
| `icon-equals` | Emoji/text to be used when the coverage diff is zero <br/> Default: `:stop_button:` |
| `icon-increased` | Emoji/text to be used when the coverage diff is increased <br/> Default: `:stop_up_small:` |
| `icon-decreased` | Emoji/text to be used when the coverage diff is decreased <br/> Default: `:stop_down_small:` |
| `icon-increased` | Emoji/text to be used when the coverage diff is increased <br/> Default: `:arrow_up_small:` |
| `icon-decreased` | Emoji/text to be used when the coverage diff is decreased <br/> Default: `:arrow_down_small:` |
| `icon-new` | Emoji/text to be used when the file file is new, and does not have previous coverage metrics to compare <br/> Default: `:new:` |

Example usage
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ inputs:
default: ":stop_button:"
icon-increased:
description: Emoji/text to be used when the coverage diff is increased
default: ":stop_up_small:"
default: ":arrow_up_small:"
icon-decreased:
description: Emoji/text to be used when the coverage diff is decreased
default: ":stop_down_small:"
default: ":arrow_down_small:"
icon-new:
description: Emoji/text to be used when the file file is new, and does not have previous coverage metrics to compare
default: ":new:"
Expand Down

0 comments on commit 46f3720

Please sign in to comment.