Skip to content
Merged
Changes from all commits
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
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ description: Retrieve GitHub branch or tag information without the /ref/* prefix
author: tj-actions
inputs:
strip_tag_prefix:
description: 'The prefix that should be stripped from the tag e.g `v` -> with a tag `v0.0.1` -> returns `0.0.1`'
description: 'The prefix that should be stripped from the tag e.g. `v` -> with a tag `v0.0.1` -> returns `0.0.1`'
default: ''
required: false
strip_branch_prefix:
description: 'The prefix that should be stripped from the branch e.g `release/` -> with a branch `release/1.0` -> returns `1.0`'
description: 'The prefix that should be stripped from the branch e.g. `release/` -> with a branch `release/1.0` -> returns `1.0`'
default: ''
required: false
replace_slashes_with_hyphens:
description: 'Replace forward slashes with hyphens in branch names'
description: 'Replace forward slashes with hyphens in branch names e.g. `feature/test` -> `feature-test`'
default: 'false'
required: false

Expand Down