Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
Automate changelog generation
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouzhuojie committed Aug 7, 2021
1 parent 0a12e1b commit a7f3a42
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/changelog.yml
@@ -0,0 +1,17 @@
name: changelog

on:
pull_request:
workflow_dispatch:

jobs:
generate_changelog:
runs-on: ubuntu-latest
name: Generate changelog for master branch
steps:
- uses: actions/checkout@v1
- name: Generate changelog
uses: heinrichreimer/github-changelog-generator-action@v2.1.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- run: cat CHANGELOG.md

0 comments on commit a7f3a42

Please sign in to comment.