Skip to content

Commit 480b268

Browse files
author
Nicholas Albion
committed
testing changelog
1 parent bad59b2 commit 480b268

File tree

4 files changed

+37
-17
lines changed

4 files changed

+37
-17
lines changed

.github/release.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- ignore-for-release
5+
authors:
6+
- github-actions
7+
categories:
8+
- title: Breaking Changes 🛠
9+
labels:
10+
- Semver-Major
11+
- breaking-change
12+
- title: Exciting New Features 🎉
13+
labels:
14+
- Semver-Minor
15+
- enhancement
16+
- title: Other Changes
17+
labels:
18+
- "*"

.github/workflows/release.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,17 @@ jobs:
4747
gradle publishToMavenLocal
4848
4949
- name: Build
50-
run: ./gradlew patchChangelog buildPlugin
50+
run: |
51+
./gradlew patchChangelog
52+
./gradlew getChangelog > CHANGELOG-release.md
53+
./gradlew buildPlugin
5154
5255
- name: Release
5356
uses: softprops/action-gh-release@v1
5457
if: startsWith(github.ref, 'refs/tags/')
5558
with:
59+
body_path: CHANGELOG-release.md
60+
generate_release_notes: true
5661
files: |
5762
CHANGELOG.md
5863
build/distributions/*.zip

CHANGELOG.md

+9-16
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,29 @@
33
## Unreleased
44

55
### Added
6-
Added a lot more phrases.
6+
- Added a lot more phrases.
77

88
### Changed
9-
Switch to vosk-api for better speech recognition.
9+
- Switched to vosk-api for better speech recognition.
1010

11-
### Deprecated
12-
13-
### Removed
14-
15-
### Fixed
16-
17-
### Security
1811

1912
## 1.3.4
20-
Update AceJump version for cursor movement.
13+
- Update AceJump version for cursor movement.
2114

2215
## 1.3.3
23-
Fix for MaryTTS. Text to speech now works as intended.
16+
- Fix for MaryTTS. Text to speech now works as intended.
2417

2518
## 1.3.2
26-
Fix a LineUnavailableException issue affecting some users.
19+
- Fix a LineUnavailableException issue affecting some users.
2720

2821
## 1.3.1
29-
Fix an NPE on recent versions of the IntelliJ Platform.
22+
- Fix an NPE on recent versions of the IntelliJ Platform.
3023

3124
## 1.3.0
32-
Add AWS speech synthesis and recognition.
25+
- Add AWS speech synthesis and recognition.
3326

3427
## 1.2.1
35-
Add a dedicated Kotlin runtime to dependencies.
28+
- Add a dedicated Kotlin runtime to dependencies.
3629

3730
## 1.2.0
38-
Introduces debugging and AceJump navigation.
31+
- Introduces debugging and AceJump navigation.

build.gradle.kts

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ intellij {
2020
}
2121

2222
tasks {
23+
changelog {
24+
groups.set(listOf("Added", "Changed", "Removed", "Fixed"))
25+
}
26+
2327
patchPluginXml {
2428
version.set("${project.version}")
2529
sinceBuild.set("222.*")

0 commit comments

Comments
 (0)