Skip to content

profy12/lowercase-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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 }}"