Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/ryohidaka/action-bump-uses
- Owner: ryohidaka
- Created: 2024-10-03T04:15:50.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-21T16:38:01.000Z (2 months ago)
- Last Synced: 2024-10-22T05:19:58.488Z (2 months ago)
- Topics: bump-version, bumpversion, github-actions, readme, version
- Language: Shell
- Homepage: https://github.com/marketplace/actions/bump-uses
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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: writejobs:
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` |