Skip to content

Commit 46f3720

Browse files
committed
release: v0.15.1
1 parent b1e1f30 commit 46f3720

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.15.1] - 2024-12-20
10+
11+
### Fixed
12+
- increase and decrease default icons were wrong and don't exist
13+
914
## [0.15.0] - 2024-12-20
1015

1116
### Added

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Configuration
5656
| `github-token` | Custom [PAT][pat] to be used instead of the [default action token][default-token], should have the `repo` scope |
5757
| `skip-comments-on-forks` | Should skip trying to comment on [pull requests created from forks](#restrictions-on-forks) <br/> Default: `false` |
5858
| `icon-equals` | Emoji/text to be used when the coverage diff is zero <br/> Default: `:stop_button:` |
59-
| `icon-increased` | Emoji/text to be used when the coverage diff is increased <br/> Default: `:stop_up_small:` |
60-
| `icon-decreased` | Emoji/text to be used when the coverage diff is decreased <br/> Default: `:stop_down_small:` |
59+
| `icon-increased` | Emoji/text to be used when the coverage diff is increased <br/> Default: `:arrow_up_small:` |
60+
| `icon-decreased` | Emoji/text to be used when the coverage diff is decreased <br/> Default: `:arrow_down_small:` |
6161
| `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:` |
6262

6363
Example usage

action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ inputs:
8181
default: ":stop_button:"
8282
icon-increased:
8383
description: Emoji/text to be used when the coverage diff is increased
84-
default: ":stop_up_small:"
84+
default: ":arrow_up_small:"
8585
icon-decreased:
8686
description: Emoji/text to be used when the coverage diff is decreased
87-
default: ":stop_down_small:"
87+
default: ":arrow_down_small:"
8888
icon-new:
8989
description: Emoji/text to be used when the file file is new, and does not have previous coverage metrics to compare
9090
default: ":new:"

0 commit comments

Comments
 (0)