Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 507 Bytes

README.md

File metadata and controls

31 lines (26 loc) · 507 Bytes

Github Split-By Action

Actions splits strings by the given delimiter

Inputs

string

required string to be split

split-by

required string/char to be used as the delimiter to split the string.

Output

value

Object containing key value pairs

{
    _0: 'first',
    _1: 'secound'
}

Example Usage

- uses: rishabhgupta/split-by@v1
  id: split
  with:
    string: 'feat/branch-name'
    split-by: '/'
- run: | 
    echo "${{ steps.split.outputs._1}}"