An open API service indexing awesome lists of open source software.

https://github.com/weblidity/update-readme-cli-action


https://github.com/weblidity/update-readme-cli-action

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# Update README CLI Action

This GitHub Action updates the README file with the usage section generated from the CLI.

## Usage

To use this action, create a workflow file (e.g., `.github/workflows/update-readme.yml`) in your repository with the following content:

```yaml
name: Update README CLI

on:
push:
branches:
- main

jobs:
update-readme:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Use Update README Action
uses: weblidity/update-readme-cli-action@v3
with:
cli-path: './bin/cli.js'