rhiokim / split-by

Github Custom Action to split strings.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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}}"

About

Github Custom Action to split strings.

License:MIT License


Languages

Language:JavaScript 100.0%