diff --git a/README.md b/README.md index 7436eaa..d78ad9a 100644 --- a/README.md +++ b/README.md @@ -106,9 +106,17 @@ Support this project with a :star: -| INPUT | TYPE | REQUIRED | DEFAULT | DESCRIPTION | -|----------------------------------------------------------------------------------|--------|----------|---------|----------------------------------------------------------------------------------------------------------------| -| [strip\_tag\_prefix](#input_strip_tag_prefix) | string | false | | The prefix that should be
stripped from the tag e.g
`v` -> with a tag
`v0.0.1` -> returns `0.0.1` | +```yaml +- uses: tj-actions/branch-names@v7 + id: branch-names + with: + # The prefix that should be stripped from the tag + # e.g `v` -> with a tag `v0.0.1` -> returns + # `0.0.1` + # Type: string + strip_tag_prefix: '' + +```