Skip to content

Commit 4766701

Browse files
authored
Merge pull request #11 from the-kolibri/dev
Add Dev => Main New features
2 parents d5a47e8 + 8ea051a commit 4766701

File tree

7 files changed

+128
-1
lines changed

7 files changed

+128
-1
lines changed

.github/ISSUE_TEMPLATE/Fix.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: 🚨 Fix
3+
about: General fix on the bundle
4+
title: "Fix "
5+
labels: ⚙️ Settings, 📦 Release Name v0.0.0, 🚨 Fix, 🧨 Bug Fix
6+
assignees: the-kolibri
7+
---

.github/ISSUE_TEMPLATE/New-Feature.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: ➕ Add New Feature
3+
about: Add New Feature
4+
title: "Add "
5+
labels: ⚙️ Settings, 📦 Release Name v0.0.0
6+
assignees: the-kolibri
7+
---

.github/ISSUE_TEMPLATE/Refactor.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: 🛠 Refactor
3+
about: Changes and optimization of the Code and Content
4+
title: "Refactor "
5+
labels: ⚙️ Settings, 📦 Release Name v0.0.0, 🛠 Refactor
6+
assignees: the-kolibri
7+
---

.github/ISSUE_TEMPLATE/issue_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
name: ✍🏻 New Template Feature
33
about: Add a new Repo Template Feature
44
title: "Add "
5-
labels: ⚙️ Settings, 📦 Picaflor v0.0.0
5+
labels: ⚙️ Settings, 📦 Release Name v0.0.0
66
assignees: the-kolibri
77
---

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# ${Project Name} Gitignore
2+
3+
.DS_Store
4+

.konfig/basic-issues.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/env bash
2+
3+
# Kolibri's repository configuration
4+
5+
G_U="the-kolibri" # GITHUB_USER
6+
L_O="⚙️ Settings" # LABEL_ONE
7+
L_T="📦 Release Name v0.0.0" # LABEL_TWO
8+
MS="Base repo files" # MILESTONE
9+
10+
CoreIssues() {
11+
gh issue create -t 'Add README file' -b 'Custom README file for the project' -l "$L_O,$L_T" -a ${G_U} -m "${MS}"
12+
gh issue create -t 'Add .gitignore file' -b 'Basic .gitignore file for the project' -l "$L_O,$L_T" -a ${G_U} -m "${MS}"
13+
gh issue create -t 'Add GitHub Issues template files' -b 'Custom GitHub Issues template files for the project' -l "$L_O,$L_T" -a ${G_U} -m "${MS}"
14+
gh issue create -t 'Add GitHub PRs template files' -b 'Custom Pull Requests template files for the project' -l "$L_O,$L_T" -a ${G_U} -m "${MS}"
15+
gh issue create -t 'Add License file' -b 'Project license file' -l "$L_O,$L_T" -a ${G_U} -m "${MS}"
16+
}
17+
18+
CoreIssues

.konfig/labels.toml

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
["⏫ Code Elevation"]
2+
color = "1d76db"
3+
name = "⏫ Code Elevation"
4+
description = "Minor merge without breaking changes"
5+
6+
["⚙️ Settings"]
7+
color = "6b759b"
8+
name = "⚙️ Settings"
9+
description = "Basic configuration of the project"
10+
11+
["🎨 Design"]
12+
color = "281a7f"
13+
name = "🎨 Design"
14+
description = "Design related"
15+
16+
["🏗 Develop"]
17+
color = "0e8a16"
18+
name = "🏗 Develop"
19+
description = "Code in development stage"
20+
21+
["👨🏻‍💻 Development"]
22+
color = "c1f745"
23+
name = "👨🏻‍💻 Development"
24+
description = "Development related"
25+
26+
["👻 Metadata"]
27+
color = "a6a7b0"
28+
name = "👻 Metadata"
29+
description = "SEO and meta-information related code"
30+
31+
["💅🏻 CSS"]
32+
color = "4f44e5"
33+
name = "💅🏻 CSS"
34+
description = "CSS styles related code"
35+
36+
["💪🏻 Javascript"]
37+
color = "fef2c0"
38+
name = "💪🏻 Javascript"
39+
description = "Javascript related code"
40+
41+
["📜 Shell Script"]
42+
color = "DEE8F2"
43+
name = "📜 Shell Script"
44+
description = "Scripts related"
45+
46+
["📝 Content"]
47+
color = "cba8f7"
48+
name = "📝 Content"
49+
description = "Content related data"
50+
51+
["📦 Release Name v0.0.0"]
52+
color = "f7e1bb"
53+
name = "📦 Release Name v0.0.0"
54+
description = "Codename of the release"
55+
56+
["🚀 Deploy"]
57+
color = "0e8a16"
58+
name = "🚀 Deploy"
59+
description = "Code ready to production stage"
60+
61+
["🚨 Fix"]
62+
color = "b60205"
63+
name = "🚨 Fix"
64+
description = "General fix on the bundle"
65+
66+
["🛠 Refactor"]
67+
color = "0052cc"
68+
name = "🛠 Refactor"
69+
description = "Changes and optimization of the Code and Content"
70+
71+
["🤖 Schemas"]
72+
color = "6c6d78"
73+
name = "🤖 Schemas"
74+
description = "Rich data integration"
75+
76+
["🦴 HTML"]
77+
color = "fbca04"
78+
name = "🦴 HTML"
79+
description = "Markup HTML related code"
80+
81+
["🧨 Bug Fix"]
82+
color = "d93f0b"
83+
name = "🧨 Bug Fix"
84+
description = "Specific fix of the bundle"

0 commit comments

Comments
 (0)