Skip to content

Commit

Permalink
Merge pull request #135 from PKU-NIP-Lab/changelog
Browse files Browse the repository at this point in the history
feat: add generate_changelog
  • Loading branch information
ztqakita authored Mar 30, 2022
2 parents 1abfbb8 + 8d000ae commit 6da5b57
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/generate_changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Generate changelog
on:
release:
types: [created, edited]

jobs:
generate-changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: BobAnkh/auto-generate-changelog@master
with:
REPO_NAME: 'PKU-NIP-Lab/BrainPy'
ACCESS_TOKEN: ${{secrets.GITHUB_TOKEN}}
PATH: 'CHANGELOG.rst'
COMMIT_MESSAGE: 'docs(CHANGELOG): update release notes'
TYPE: 'feat:Feature,fix:Bug Fixes,docs:Documentation,refactor:Refactor,perf:Performance Improvements'

0 comments on commit 6da5b57

Please sign in to comment.