DEV Community

Chrissie
Chrissie

Posted on

Changelog generator

My Workflow

This workflow will install a changelog generator package into your repository

Submission Category:

Wacky Wildcards

Yaml File or Link to Code

yaml file

name: Changelog generator on: workflow_dispatch: home: description: 'location' required: false jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup Node uses: actions/setup-node@v1 with: node-version: '10.x' - name: Install changelog generator package run: | npm install npm install generate-changelog -D 
Enter fullscreen mode Exit fullscreen mode

link to code
https://github.com/chrissiemhrk/changelog-generator

Top comments (0)