-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
24 lines (24 loc) · 721 Bytes
/
action.yml
File metadata and controls
24 lines (24 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: "string-transformer"
description: "A helper for transforming strings in GitHub Actions"
author: "@cloudposse"
branding:
icon: 'cloud'
color: 'white'
inputs:
operation:
required: true
description: "Operation you would like to run on the string, valid values are: `lowercase`, `uppercase`, `kebabcase`, `dns-subdomain`"
default: "lowercase"
input-string:
required: true
description: "The string you'd like to perform the operation on"
max-length:
required: false
description: "The maximum length of the string, or -1 to not limit the length"
default: "-1"
outputs:
output-string:
description: "The transformed string"
runs:
using: "node20"
main: "dist/index.js"