Update minor version #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |