Skip to content

Commit 81049ba

Browse files
committed
Better changelog
1 parent 85dea97 commit 81049ba

3 files changed

Lines changed: 18 additions & 39 deletions

File tree

.github/changelog-configuration.json

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- ignore-for-release
5+
authors:
6+
- someuser
7+
categories:
8+
- title: Breaking Changes 🛠
9+
labels:
10+
- breaking-change
11+
- title: Exciting New Features 🎉
12+
labels:
13+
- enhancement
14+
- title: Other Changes
15+
labels:
16+
- "*"

.github/workflows/Android-CI-release.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,6 @@ jobs:
1919
with:
2020
distribution: "adopt"
2121
java-version: 11
22-
- name: Build Changelog
23-
id: github_release
24-
uses: mikepenz/release-changelog-builder-action@main
25-
with:
26-
configuration: ".github/changelog-configuration.json"
27-
env:
28-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2922
- name: Get the version
3023
id: tagger
3124
uses: jimschubert/query-tag-action@v2
@@ -39,11 +32,13 @@ jobs:
3932
run: ./gradlew clean build
4033
env:
4134
VERSION: ${{ github.ref }}
35+
4236
- name: Create Release
4337
uses: softprops/action-gh-release@v1
4438
with:
4539
tag_name: ${{steps.tagger.outputs.tag}}
4640
name: ${{steps.tagger.outputs.tag}}
41+
generate_release_notes: true
4742
body: ${{steps.github_release.outputs.changelog}}
4843
files: MPChartLib/build/outputs/aar/MPChartLib-release.aar
4944
env:

0 commit comments

Comments
 (0)