DEV Community

Chrissie
Chrissie

Posted on

5 1

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)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay