Skip to content
chevron-down

GitHub Action

to-lowercase

0.6 Latest version

to-lowercase

chevron-down

to-lowercase

lower case a text

Installation

Copy and paste the following snippet into your .yml file.

              

- name: to-lowercase

uses: profy12/[email protected]

Learn more about this action in profy12/lowercase-action

Choose a version

lowercase-action

Action to lower an input.

Input accepted is text

Usage

on:
  push:
    branches:
      - main
  pull_request:

jobs:
  test:
    runs-on: ubuntu-latest
    name: A test job for tr
    steps:
    - name: Checkout
      uses: actions/checkout@v4
      with:
        fetch-depth: 1
    - name: Test just output the message
      uses: profy12/[email protected]
      id: lowered
      with:
        text: |
          Hello DevOps
    - name: Debug our lowered text message
      run: echo "${{ steps.lowered.outputs.text }}"