Skip to content

Commit

Permalink
ci: added standard-version package
Browse files Browse the repository at this point in the history
  • Loading branch information
msudgh committed Dec 18, 2023
1 parent cb57829 commit da5f4ce
Show file tree
Hide file tree
Showing 3 changed files with 3,739 additions and 249 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Update Changelog

on:
pull_request:
types:
- opened
- synchronize

jobs:
updateChangelog:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14

- name: Install dependencies
run: npm ci

- name: Update Changelog
run: npx standard-version --release-as ${{ github.event.pull_request.title }}
Loading

0 comments on commit da5f4ce

Please sign in to comment.