| 123456789101112131415161718192021222324252627 |
- name: Update minor version
- on:
- workflow_dispatch
- jobs:
- update-dep:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-node@v1
-
- with:
- node-version: '14.x'
- - name: Update minor
- run: |
- npm --no-git-tag-version version patch
- - name: Create Pull Request
- uses: peter-evans/create-pull-request@v3
- with:
- commit-message: Update minor version
- title: Update minor version
- body: |
- - Update minor version in package.json
-
- Auto-generated by Github Actions
- branch: update-minor-version
|