mirror of
https://github.com/ASzc/change-string-case-action.git
synced 2024-11-23 06:03:50 +08:00
21 lines
646 B
YAML
21 lines
646 B
YAML
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:
|
|
using: node20
|
|
main: index.js
|