Skip to content

Commit 0c29848

Browse files
not-elmnot-elm
andauthored
feat: Add release note configuration for changelog categories (#19)
* feat: Add release note configuration for changelog categories * feat: Update test command to include libraries, tests, examples, and binaries --------- Co-authored-by: not-elm <elmgameinfo@gmail.com>
1 parent b4b4865 commit 0c29848

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.github/release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
changelog:
2+
categories:
3+
- title: Breaking Changes 🛠
4+
labels:
5+
- breaking-change
6+
- title: Exciting New Features 🎉
7+
labels:
8+
- enhancement
9+
- title: Improvements to existing features
10+
labels:
11+
- improvement
12+
- title: Bug Fixes
13+
labels:
14+
- bug
15+
- title: Other Changes
16+
labels:
17+
- "*"

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
- name: Toolchain
2626
uses: dtolnay/rust-toolchain@stable
2727
- name: Test
28-
run: cargo test
28+
run: cargo test --lib --tests --examples --bins

0 commit comments

Comments
 (0)