From a3110cf95db82e2c245a069aa875c21804484adf Mon Sep 17 00:00:00 2001 From: 8954sood <8954sood@naver.com> Date: Tue, 19 Nov 2024 23:41:12 +0900 Subject: [PATCH] ci: Edit String Parser --- .github/workflows/string-parser.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/string-parser.yml b/.github/workflows/string-parser.yml index c66e237..60f0efd 100644 --- a/.github/workflows/string-parser.yml +++ b/.github/workflows/string-parser.yml @@ -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: