Skip to content

Commit

Permalink
ci: Edit String Parser
Browse files Browse the repository at this point in the history
  • Loading branch information
8954sood committed Nov 19, 2024
1 parent 257f546 commit a3110cf
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/string-parser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@ name: String Parser

on:
workflow_dispatch:
inputs:
body:
description: 'The string to be parsed'
required: true
split:
description: 'The string used to split the body'
required: false
splitIndex:
description: 'The index after splitting the string'
required: false
replaceBefore:
description: 'The substring to replace before the split'
required: false
replaceAfter:
description: 'The substring to replace after the split'
required: false
envName:
description: 'The environment variable name to store the result'
required: true

jobs:
parse-string:
Expand Down

0 comments on commit a3110cf

Please sign in to comment.