Skip to content

Commit c65b379

Browse files
committed
refactor: prepare for v6
1 parent 70a6612 commit c65b379

File tree

129 files changed

+1179
-10373
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+1179
-10373
lines changed

.github/COMMIT_CONVENTION.md

-70
This file was deleted.

.github/CONTRIBUTING.md

-46
This file was deleted.

.github/FUNDING.yml

-1
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

-29
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

-5
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

-28
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

-28
This file was deleted.

.github/labels.json

+170
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
[
2+
{
3+
"name": "Priority: Critical",
4+
"color": "ea0056",
5+
"description": "The issue needs urgent attention",
6+
"aliases": []
7+
},
8+
{
9+
"name": "Priority: High",
10+
"color": "5666ed",
11+
"description": "Look into this issue before picking up any new work",
12+
"aliases": []
13+
},
14+
{
15+
"name": "Priority: Medium",
16+
"color": "f4ff61",
17+
"description": "Try to fix the issue for the next patch/minor release",
18+
"aliases": []
19+
},
20+
{
21+
"name": "Priority: Low",
22+
"color": "87dfd6",
23+
"description": "Something worth considering, but not a top priority for the team",
24+
"aliases": []
25+
},
26+
{
27+
"name": "Semver: Alpha",
28+
"color": "008480",
29+
"description": "Will make it's way to the next alpha version of the package",
30+
"aliases": []
31+
},
32+
{
33+
"name": "Semver: Major",
34+
"color": "ea0056",
35+
"description": "Has breaking changes",
36+
"aliases": []
37+
},
38+
{
39+
"name": "Semver: Minor",
40+
"color": "fbe555",
41+
"description": "Mainly new features and improvements",
42+
"aliases": []
43+
},
44+
{
45+
"name": "Semver: Next",
46+
"color": "5666ed",
47+
"description": "Will make it's way to the bleeding edge version of the package",
48+
"aliases": []
49+
},
50+
{
51+
"name": "Semver: Patch",
52+
"color": "87dfd6",
53+
"description": "A bug fix",
54+
"aliases": []
55+
},
56+
{
57+
"name": "Status: Abandoned",
58+
"color": "ffffff",
59+
"description": "Dropped and not into consideration",
60+
"aliases": ["wontfix"]
61+
},
62+
{
63+
"name": "Status: Accepted",
64+
"color": "e5fbf2",
65+
"description": "The proposal or the feature has been accepted for the future versions",
66+
"aliases": []
67+
},
68+
{
69+
"name": "Status: Blocked",
70+
"color": "ea0056",
71+
"description": "The work on the issue or the PR is blocked. Check comments for reasoning",
72+
"aliases": []
73+
},
74+
{
75+
"name": "Status: Completed",
76+
"color": "008672",
77+
"description": "The work has been completed, but not released yet",
78+
"aliases": []
79+
},
80+
{
81+
"name": "Status: In Progress",
82+
"color": "73dbc4",
83+
"description": "Still banging the keyboard",
84+
"aliases": ["in progress"]
85+
},
86+
{
87+
"name": "Status: On Hold",
88+
"color": "f4ff61",
89+
"description": "The work was started earlier, but is on hold now. Check comments for reasoning",
90+
"aliases": ["On Hold"]
91+
},
92+
{
93+
"name": "Status: Review Needed",
94+
"color": "fbe555",
95+
"description": "Review from the core team is required before moving forward",
96+
"aliases": []
97+
},
98+
{
99+
"name": "Status: Awaiting More Information",
100+
"color": "89f8ce",
101+
"description": "Waiting on the issue reporter or PR author to provide more information",
102+
"aliases": []
103+
},
104+
{
105+
"name": "Status: Need Contributors",
106+
"color": "7057ff",
107+
"description": "Looking for contributors to help us move forward with this issue or PR",
108+
"aliases": []
109+
},
110+
{
111+
"name": "Type: Bug",
112+
"color": "ea0056",
113+
"description": "The issue has indentified a bug",
114+
"aliases": ["bug"]
115+
},
116+
{
117+
"name": "Type: Security",
118+
"color": "ea0056",
119+
"description": "Spotted security vulnerability and is a top priority for the core team",
120+
"aliases": []
121+
},
122+
{
123+
"name": "Type: Duplicate",
124+
"color": "00837e",
125+
"description": "Already answered or fixed previously",
126+
"aliases": ["duplicate"]
127+
},
128+
{
129+
"name": "Type: Enhancement",
130+
"color": "89f8ce",
131+
"description": "Improving an existing feature",
132+
"aliases": ["enhancement"]
133+
},
134+
{
135+
"name": "Type: Feature Request",
136+
"color": "483add",
137+
"description": "Request to add a new feature to the package",
138+
"aliases": []
139+
},
140+
{
141+
"name": "Type: Invalid",
142+
"color": "dbdbdb",
143+
"description": "Doesn't really belong here. Maybe use discussion threads?",
144+
"aliases": ["invalid"]
145+
},
146+
{
147+
"name": "Type: Question",
148+
"color": "eceafc",
149+
"description": "Needs clarification",
150+
"aliases": ["help wanted", "question"]
151+
},
152+
{
153+
"name": "Type: Documentation Change",
154+
"color": "7057ff",
155+
"description": "Documentation needs some improvements",
156+
"aliases": ["documentation"]
157+
},
158+
{
159+
"name": "Type: Dependencies Update",
160+
"color": "00837e",
161+
"description": "Bump dependencies",
162+
"aliases": ["dependencies"]
163+
},
164+
{
165+
"name": "Good First Issue",
166+
"color": "008480",
167+
"description": "Want to contribute? Just filter by this label",
168+
"aliases": ["good first issue"]
169+
}
170+
]

0 commit comments

Comments
 (0)