Skip to content

rtvu/get-description-from-readme-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

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GET-DESCRIPTION-FROM-README-ACTION

GitHub Action to get description from README.

README Format

The first paragraph of the first header is considered the description.

Usage

steps:
  -
    name: 'Checkout repository'
    uses: actions/checkout@v4
  -
    name: 'Get README description'
    id: get-description
    uses: rtvu/get-description-from-readme-action@v1
  -
    name: 'Echo description'
    run: echo ${{ steps.get-description.outputs.description }}

Inputs

Name Description Default
readme Path to repository's README. README.md

Outputs

Name Description
description README's description.