Skip to content

genCode-4.1

genCode-4.1 #2

Workflow file for this run

name: Generate changelog
on:
release:
types: [created, edited]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
generate-changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: BobAnkh/auto-generate-changelog@v1.2.3
with:
ACCESS_TOKEN: ${{secrets.GITHUB_TOKEN}}
PATH: 'CHANGELOG.md'
COMMIT_MESSAGE: 'docs(changelog): update release notes'
TYPE: 'feat:Feature,fix:Bug Fixes,refactor:Refactor,perf:Performance Improvements'
PULL_REQUEST: 'master'
BRANCH: 'changelog'