You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Change String Case
v1
This action accepts any string, and outputs three different versions of that string:
- lowercase (
XyZzY
->xyzzy
) - uppercase (
XyZzY
->XYZZY
) - capitalized (
Xyzzy
->Xyzzy
)
You can access the outputted strings through the job outputs context. See docs here, or the Example Usage section below.
Required The string you want manipulated
inputStr.toLowerCase()
Example: XyZzY
-> xyzzy
inputStr.toUpperCase()
Example: XyZzY
-> XYZZY
inputStr.charAt(0).toUpperCase() + inputStr.slice(1)
Example: XyZzY
-> Xyzzy
name: SomeWorkflow
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- id: string
uses: ASzc/change-string-case-action@v1
with:
string: XyZzY
- id: step2
run: echo ${{ steps.string.outputs.lowercase }}