Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
Create version_bump.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ziccardi committed May 6, 2020
1 parent e5837ed commit ae59440
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/version_bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Bump version
on:
push:
branches:
- master
paths-ignore:
- 'package.json'
- 'CHANGELOG.md'
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.ACTION_TOKEN }}
- name: Bump version and push tag
uses: TriPSs/conventional-changelog-action@v2.1.1
with:
github-token: ${{ secrets.ACTION_TOKEN }}
git-message: 'chore(release): {version}'
preset: 'angular'
tag-prefix: ''
output-file: 'CHANGELOG.md'

0 comments on commit ae59440

Please sign in to comment.