GitHub Actions to update the version of the uses
documented in the README.
on: [push]
permissions:
contents: write
jobs:
bump-uses:
runs-on: ubuntu-latest
steps:
- uses: ryohidaka/action-bump-uses@v0.3.1
with:
commit-user-name: "GitHub Actions"
commit-user-email: "actions@github.com"
commit-message: "chore: Bump uses"
dry-run: false
Input | Description | Default |
---|---|---|
commit-user-name |
Commit username. | GitHub Actions |
commit-user-email |
Commit email. | actions@github.com |
commit-message |
Commit message. | chore: Bump uses |
dry-run |
If true, the commit and push steps will be skipped. | false |