Skip to content

Commit

Permalink
feat(changelog): update changelog in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
MaloPolese committed Aug 19, 2021
1 parent 43c9a68 commit 70ca510
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ categories:
- 'bug'
- title: '🧰 Maintenance'
label: 'chore'
- title: '🧺 Miscellaneous' #Everything except ABAP
label: 'misc'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
version-resolver:
Expand All @@ -27,5 +29,4 @@ version-resolver:
default: patch
template: |
## Changes
$CHANGES
19 changes: 19 additions & 0 deletions .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Update Changelog CI"
on:
push:
tags:
- 'v*'
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: heinrichreimer/github-changelog-generator-action@v2.1.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3

0 comments on commit 70ca510

Please sign in to comment.