We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7762e20 commit db2c812Copy full SHA for db2c812
action.yml
@@ -1,5 +1,26 @@
1
name: "String Parser"
2
description: "Easily parse strings in your GitHub Actions workflow."
3
+
4
+inputs:
5
+ body:
6
+ description: 'The string to be parsed'
7
+ required: true
8
+ split:
9
+ description: 'The string used to split the body'
10
+ required: false
11
+ splitIndex:
12
+ description: 'The index after splitting the string'
13
14
+ replaceBefore:
15
+ description: 'The substring to replace before the split'
16
17
+ replaceAfter:
18
+ description: 'The substring to replace after the split'
19
20
+ envName:
21
+ description: 'The environment variable name to store the result'
22
23
24
runs:
25
using: "node20"
26
main: "index.js"
0 commit comments