Skip to content

Commit

Permalink
chore(ci): use Actions to generate changelog
Browse files Browse the repository at this point in the history
`release-please` will bump the package version and generate changelogs
based on conventionalcommit. It does so by opening a PR every time a
commit lands, and it updates that PR for each subsequent commit.
Publishing to npm is still done manually.

Ref: nodejs#446
  • Loading branch information
mmarchini committed Aug 21, 2020
1 parent e659e26 commit eba88a4
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on:
push:
branches:
- master

name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@v1.6.3
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
package-name: node-core-utils

0 comments on commit eba88a4

Please sign in to comment.