Skip to content

Commit fae3b64

Browse files
Add:changelog json
1 parent 43ef202 commit fae3b64

File tree

2 files changed

+87
-0
lines changed

2 files changed

+87
-0
lines changed

.github/changelog_config.json

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
{
2+
"categories": [
3+
{
4+
"title": "## 🚀 Features",
5+
"labels": ["feature", "enhancement", "feat"]
6+
},
7+
{
8+
"title": "## 🐛 Bug Fixes",
9+
"labels": ["bug", "fix", "bugfix"]
10+
},
11+
{
12+
"title": "## 📚 Documentation",
13+
"labels": ["documentation", "docs"]
14+
},
15+
{
16+
"title": "## 🔧 Maintenance",
17+
"labels": ["maintenance", "refactor", "chore"]
18+
},
19+
{
20+
"title": "## 🔒 Security",
21+
"labels": ["security"]
22+
},
23+
{
24+
"title": "## ⚡ Performance",
25+
"labels": ["performance", "perf"]
26+
},
27+
{
28+
"title": "## 🧪 Testing",
29+
"labels": ["test", "testing"]
30+
},
31+
{
32+
"title": "## 📦 Dependencies",
33+
"labels": ["dependencies", "deps"]
34+
},
35+
{
36+
"title": "## 🔄 Other Changes",
37+
"labels": []
38+
}
39+
],
40+
"ignore_labels": [
41+
"ignore-for-release",
42+
"duplicate",
43+
"question",
44+
"invalid",
45+
"wontfix"
46+
],
47+
"sort": "ASC",
48+
"template": "${{CHANGELOG}}",
49+
"pr_template": "- ${{TITLE}} (#${{NUMBER}}) @${{AUTHOR}}",
50+
"empty_template": "- No changes",
51+
"label_extractor": [
52+
{
53+
"pattern": "^(feat|feature|enhancement)(\\([^)]*\\))?!?:",
54+
"target": "feature",
55+
"flags": "i"
56+
},
57+
{
58+
"pattern": "^(fix|bugfix)(\\(.+\\))?!?:",
59+
"target": "bug",
60+
"flags": "i"
61+
},
62+
{
63+
"pattern": "^(docs|doc)(\\(.+\\))?!?:",
64+
"target": "documentation",
65+
"flags": "i"
66+
},
67+
{
68+
"pattern": "^(chore|refactor|style|test)(\\(.+\\))?!?:",
69+
"target": "maintenance",
70+
"flags": "i"
71+
},
72+
{
73+
"pattern": "^(perf|performance)(\\(.+\\))?!?:",
74+
"target": "performance",
75+
"flags": "i"
76+
}
77+
],
78+
"max_tags_to_fetch": 200,
79+
"max_pull_requests": 1000,
80+
"max_back_track_time_days": 365
81+
}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

0 commit comments

Comments
 (0)