Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ryohidaka/action-bump-uses

GitHub Actions to update the version of the "uses" documented in the README.
https://github.com/ryohidaka/action-bump-uses

bump-version bumpversion github-actions readme version

Last synced: about 2 months ago
JSON representation

GitHub Actions to update the version of the "uses" documented in the README.

Awesome Lists containing this project

README

        

# Bump Uses

[![GitHub Release](https://img.shields.io/github/v/release/ryohidaka/action-bump-uses)](https://github.com/ryohidaka/action-bump-uses/releases/)
[![Test Action](https://github.com/ryohidaka/action-bump-uses/actions/workflows/test.yml/badge.svg)](https://github.com/ryohidaka/action-bump-uses/actions/workflows/test.yml)

GitHub Actions to update the version of the `uses` documented in the README.

## Usage

```yml
on: [push]

permissions:
contents: write

jobs:
bump-uses:
runs-on: ubuntu-latest
steps:
- uses: ryohidaka/[email protected]
with:
commit-user-name: "GitHub Actions"
commit-user-email: "[email protected]"
commit-message: "chore: Bump uses"
dry-run: false
```

## Inputs

| Input | Description | Default |
| ------------------- | --------------------------------------------------- | -------------------- |
| `commit-user-name` | Commit username. | `GitHub Actions` |
| `commit-user-email` | Commit email. | `[email protected]` |
| `commit-message` | Commit message. | `chore: Bump uses` |
| `dry-run` | If true, the commit and push steps will be skipped. | `false` |