mirror of
https://github.com/ASzc/change-string-case-action.git
synced 2024-11-23 15:03:51 +08:00
fabd239981
👋 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`.
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: node16
|
|
main: index.js
|