Skip to content

Commit efec3fd

Browse files
committed
ci: upload changelog config
1 parent 5931f94 commit efec3fd

File tree

3 files changed

+177
-0
lines changed

3 files changed

+177
-0
lines changed

.github/changelog-configuration.json

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
{
2+
"categories": [
3+
{
4+
"title": "\n\n<br>\n\n#### 🪛 Continuous integration",
5+
"labels": [ "kind/ci", "ci" ]
6+
},
7+
{
8+
"title": "\n\n<br>\n\n#### 🚀 Features",
9+
"labels": [ "kind/feature", "feature", "feat" ]
10+
},
11+
{
12+
"title": "\n\n<br>\n\n#### 🐛 Bugfixes",
13+
"labels": [ "kind/bug", "fix", "bug" ]
14+
},
15+
{
16+
"title": "\n\n<br>\n\n#### 🔧 Changes",
17+
"labels": [ "kind/chore", "change", "chore" ]
18+
},
19+
{
20+
"title": "\n\n<br>\n\nn#### ✨ Optimizations",
21+
"labels": [ "kind/perf", "optimization", "perf", "optimize" ]
22+
},
23+
{
24+
"title": "\n\n<br>\n\n#### 🚨 Security ",
25+
"labels": [ "kind/security", "security" ]
26+
},
27+
{
28+
"title": "\n\n<br>\n\n#### 🧹 Housekeeping",
29+
"labels": [ "kind/refactor", "refactor", "style" ]
30+
},
31+
{
32+
"title": "\n\n<br>\n\n#### 🐒 Miscellaneous",
33+
"labels": [ "kind/misc", "misc" ]
34+
},
35+
{
36+
"title": "\n\n<br>\n\n#### ⛔ Deprecated",
37+
"labels": [ "kind/deprecate", "deprecate" ]
38+
},
39+
{
40+
"title": "\n\n<br>\n\n#### ⛔ Removed",
41+
"labels": [ "kind/remove", "remove" ]
42+
},
43+
{
44+
"title": "\n\n<br>\n\n#### 📦 Build & Dependencies",
45+
"labels": [ "kind/build", "build", "dependency", "dep", "package" ]
46+
},
47+
{
48+
"title": "\n\n<br>\n\n#### ✏️ Docs",
49+
"labels": [ "kind/docs", "doc", "docs", "wiki" ]
50+
},
51+
{
52+
"title": "\n\n<br>\n\n#### 🧪 Tests & Demo Vault",
53+
"labels": [ "kind/test", "test", "tests", "vault" ]
54+
}
55+
],
56+
"sort": "ASC",
57+
"pr_template": "- ${{TITLE_ONLY}} : #{{MERGE_SHA}} @#{{AUTHOR}}",
58+
"empty_template": "- No major changes to address in this release",
59+
"custom_placeholders": [
60+
{
61+
"name": "TITLE_ONLY",
62+
"source": "TITLE",
63+
"transformer": {
64+
"method": "regexr",
65+
"pattern": "(\\w+(\\(.+\\))?: ?)?(.+)",
66+
"target": "$2 $3"
67+
}
68+
}
69+
],
70+
"label_extractor": [
71+
{
72+
"pattern": "^(build|ci|change|chore|doc|docs|wiki|remove|deprecate|security|dependency|dep|package|feat|feature|fix|bug|perf|optimize|optimization|refactor|style|test|tests|vault):(.*)",
73+
"target": "$1",
74+
"on_property": "title"
75+
},
76+
{
77+
"pattern": "^(build|ci|change|chore|doc|docs|wiki|remove|deprecate|security|dependency|dep|package|feat|feature|fix|bug|perf|optimize|optimization|refactor|style|test|tests|vault){1}(\\([\\w\\-\\.]+\\))?(!)?:(.*)",
78+
"target": "$1",
79+
"on_property": "title"
80+
}
81+
],
82+
"duplicate_filter": {
83+
"pattern": "github.*",
84+
"on_property": "author",
85+
"method": "match"
86+
},
87+
"max_tags_to_fetch": 200,
88+
"max_pull_requests": 200,
89+
"max_back_track_time_days": 365,
90+
"exclude_merge_branches": [],
91+
"tag_resolver": {
92+
"method": "semver"
93+
},
94+
"base_branches": []
95+
}

.github/dependabot.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# MIT License
2+
#
3+
# Copyright (c) 2024 Aetherinox
4+
#
5+
# Permission is hereby granted, free of charge, to any person obtaining a copy
6+
# of this software and associated documentation files (the "Software"), to deal
7+
# in the Software without restriction, including without limitation the rights
8+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
# copies of the Software, and to permit persons to whom the Software is
10+
# furnished to do so, subject to the following conditions:
11+
#
12+
# The above copyright notice and this permission notice shall be included in all
13+
# copies or substantial portions of the Software.
14+
#
15+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
# SOFTWARE.
22+
23+
version: 2
24+
updates:
25+
- package-ecosystem: npm
26+
directory: "/"
27+
schedule:
28+
interval: daily
29+
labels:
30+
- "Type ◦ Dependency"
31+
32+
- package-ecosystem: "github-actions"
33+
directory: "/"
34+
schedule:
35+
interval: "daily"
36+
labels:
37+
- "Type ◦ Git Action"

.github/labeler.yml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Number of labels to fetch (optional). Defaults to 100
2+
numLabels: 40
3+
# These labels will not be used even if the issue contains them (optional).
4+
# Pass a blank array if no labels are to be excluded.
5+
# excludeLabels: []
6+
excludeLabels:
7+
- pinned
8+
# custom configuration to override default behaviour
9+
# control explicitly what gets added and when
10+
custom:
11+
- location: title
12+
keywords:
13+
- '[roadmap]'
14+
labels:
15+
- Type ◦ Roadmap
16+
- location: title
17+
keywords:
18+
- '[road-map]'
19+
labels:
20+
- Type ◦ Roadmap
21+
- location: title
22+
keywords:
23+
- '[bug]'
24+
labels:
25+
- Type ◦ Bug
26+
- location: title
27+
keywords:
28+
- '[issue]'
29+
labels:
30+
- Type ◦ Bug
31+
- location: title
32+
keywords:
33+
- '[feature]'
34+
labels:
35+
- Type ◦ Feature
36+
- location: body
37+
keywords:
38+
- 'request feature'
39+
labels:
40+
- Type ◦ Feature
41+
- location: title
42+
keywords:
43+
- '[request]'
44+
labels:
45+
- Type ◦ Feature

0 commit comments

Comments
 (0)