change-string-case/action.yml
Andreas Mosti fabd239981 Updating node version to 16
👋 
Github as depricated the use of `node12`, [as explained here](https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/) så this PR updates the runtime from `node12` to `node16`.
2022-10-27 07:01:54 -06:00

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: node16
main: index.js