Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neverendingqs/gh-action-node-bump-version-pr
Bumps Node version and creates a pull request.
https://github.com/neverendingqs/gh-action-node-bump-version-pr
github-actions
Last synced: 6 days ago
JSON representation
Bumps Node version and creates a pull request.
- Host: GitHub
- URL: https://github.com/neverendingqs/gh-action-node-bump-version-pr
- Owner: neverendingqs
- License: apache-2.0
- Created: 2020-07-18T21:17:24.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-28T17:19:26.000Z (over 3 years ago)
- Last Synced: 2024-10-31T10:49:19.792Z (16 days ago)
- Topics: github-actions
- Language: Shell
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gh-action-node-bump-version-pr
Bumps Node version and creates a pull request. Can be paired with
[publish-me-maybe](https://www.npmjs.com/package/publish-me-maybe).## Example usage
```yaml
name: Scheduled dependencies update
on:
workflow_dispatch:
inputs:
version-type:
default: patch
description: Bumps the package version based on value (e.g. patch)
required: true
jobs:
update-deps:
name: Bump Node version
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@v2
- uses: neverendingqs/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version-type: ${{ github.event.inputs.version-type }}
```