We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8050123 commit d291a38Copy full SHA for d291a38
.github/workflows/release.yml
@@ -25,6 +25,28 @@ jobs:
25
uses: mikepenz/release-changelog-builder-action@v5
26
with:
27
mode: "PR"
28
+ configurationJson: |
29
+ {
30
+ "categories": [
31
32
+ "title": "## 🚀 Features",
33
+ "labels": ["feature", "enhancement"]
34
+ },
35
36
+ "title": "## 🐛 Fixes",
37
+ "labels": ["fix", "bug"]
38
39
40
+ "title": "## 🧪 Tests",
41
+ "labels": ["test"]
42
43
44
+ "title": "## 📖 Documentation",
45
+ "labels": ["documentation"]
46
+ }
47
+ ],
48
49
+
50
token: ${{ secrets.GITHUB_TOKEN }}
51
52
- name: Create Release
0 commit comments