change-string-case/action.yml

21 lines
646 B
YAML
Raw Permalink Normal View History

2020-07-30 00:10:10 +08:00
name: Change String Case
author: Alex Szczuczko
description: Make a string lowercase, uppercase, or capitalized
branding:
icon: corner-down-right
color: gray-dark
inputs:
string:
description: The input string
required: true
outputs:
lowercase:
description: The input string, with any uppercase characters replaced with lowercase ones
uppercase:
description: The input string, with any lowercase characters replaced with uppercase ones
capitalized:
description: The input string, with any alphabetical characters lowercase, except for the first character, which is uppercased
runs:
2023-10-26 03:54:52 +08:00
using: node20
2020-07-30 00:10:10 +08:00
main: index.js