From ddd733ff5ab33b1d11fce1cd505bb4cbb70d4fba Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Wed, 16 Mar 2022 04:16:27 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 96cb85a..e429ff1 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Get branch or tag information without the `/ref/*` prefix ## Features * Retrieve the current branch name without any prefix. (e.g. `'refs/heads/main'` -> `'main'`) -* Retrieve the current tag with an option to strip the "v" prefix (e.g. `'refs/tags/v1.0.0'` -> `'v1.0.0'` OR `'1.0.0'`) +* Retrieve the current tag with an option to strip the prefix (e.g. `v0.0.1` -> `v` -> `0.0.1`) * Detect actions triggered by non default branches * Detect actions triggered by the default branch * Supports all valid [git branch names](https://wincent.com/wiki/Legal_Git_branch_names) @@ -79,7 +79,7 @@ Support this project with a :star: | Input | type | default | Description | |:-----------------:|:---------:|:--------:|:-----------------------:| -| strip\_tag\_prefix | `string` | `''` | The tag prefix to strip
*i.e `v0.0.1` -> `v` -> `0.0.1`* | +| strip\_tag\_prefix | `string` | `''` | The tag prefix to strip
e.g `v0.0.1` -> `v` -> `0.0.1` | ## Events