-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from swup/update
Bump version and add version workflow
- Loading branch information
Showing
5 changed files
with
7,826 additions
and
6,605 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# This workflow bumps the package.json version and creates a PR | ||
|
||
name: Update package version | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
segment: | ||
description: 'Semver segment to update' | ||
required: true | ||
default: 'patch' | ||
type: choice | ||
options: | ||
- minor | ||
- patch | ||
|
||
jobs: | ||
update-version: | ||
name: Update package version | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 16 | ||
- run: echo "Updating ${{ inputs.segment }} version" | ||
- name: Update version | ||
run: npm --no-git-tag-version version ${{ inputs.segment }} | ||
- uses: peter-evans/create-pull-request@v4 | ||
with: | ||
base: 'master' | ||
branch: 'version/automated' | ||
title: 'Update package version (automated)' | ||
commit-message: 'Update package version' | ||
body: 'Automated update to ${{ inputs.segment }} version' |
Oops, something went wrong.