Skip to content

Commit

Permalink
Merge pull request #11 from the-kolibri/dev
Browse files Browse the repository at this point in the history
Add Dev => Main New features
  • Loading branch information
the-kolibri authored Mar 19, 2021
2 parents d5a47e8 + 8ea051a commit 4766701
Show file tree
Hide file tree
Showing 7 changed files with 128 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE/Fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
name: 🚨 Fix
about: General fix on the bundle
title: "Fix "
labels: ⚙️ Settings, 📦 Release Name v0.0.0, 🚨 Fix, 🧨 Bug Fix
assignees: the-kolibri
---
7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE/New-Feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
name: ➕ Add New Feature
about: Add New Feature
title: "Add "
labels: ⚙️ Settings, 📦 Release Name v0.0.0
assignees: the-kolibri
---
7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE/Refactor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
name: 🛠 Refactor
about: Changes and optimization of the Code and Content
title: "Refactor "
labels: ⚙️ Settings, 📦 Release Name v0.0.0, 🛠 Refactor
assignees: the-kolibri
---
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/issue_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
name: ✍🏻 New Template Feature
about: Add a new Repo Template Feature
title: "Add "
labels: ⚙️ Settings, 📦 Picaflor v0.0.0
labels: ⚙️ Settings, 📦 Release Name v0.0.0
assignees: the-kolibri
---
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# ${Project Name} Gitignore

.DS_Store

18 changes: 18 additions & 0 deletions .konfig/basic-issues.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/usr/bin/env bash

# Kolibri's repository configuration

G_U="the-kolibri" # GITHUB_USER
L_O="⚙️ Settings" # LABEL_ONE
L_T="📦 Release Name v0.0.0" # LABEL_TWO
MS="Base repo files" # MILESTONE

CoreIssues() {
gh issue create -t 'Add README file' -b 'Custom README file for the project' -l "$L_O,$L_T" -a ${G_U} -m "${MS}"
gh issue create -t 'Add .gitignore file' -b 'Basic .gitignore file for the project' -l "$L_O,$L_T" -a ${G_U} -m "${MS}"
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}"
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}"
gh issue create -t 'Add License file' -b 'Project license file' -l "$L_O,$L_T" -a ${G_U} -m "${MS}"
}

CoreIssues
84 changes: 84 additions & 0 deletions .konfig/labels.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
["⏫ Code Elevation"]
color = "1d76db"
name = "⏫ Code Elevation"
description = "Minor merge without breaking changes"

["⚙️ Settings"]
color = "6b759b"
name = "⚙️ Settings"
description = "Basic configuration of the project"

["🎨 Design"]
color = "281a7f"
name = "🎨 Design"
description = "Design related"

["🏗 Develop"]
color = "0e8a16"
name = "🏗 Develop"
description = "Code in development stage"

["👨🏻‍💻 Development"]
color = "c1f745"
name = "👨🏻‍💻 Development"
description = "Development related"

["👻 Metadata"]
color = "a6a7b0"
name = "👻 Metadata"
description = "SEO and meta-information related code"

["💅🏻 CSS"]
color = "4f44e5"
name = "💅🏻 CSS"
description = "CSS styles related code"

["💪🏻 Javascript"]
color = "fef2c0"
name = "💪🏻 Javascript"
description = "Javascript related code"

["📜 Shell Script"]
color = "DEE8F2"
name = "📜 Shell Script"
description = "Scripts related"

["📝 Content"]
color = "cba8f7"
name = "📝 Content"
description = "Content related data"

["📦 Release Name v0.0.0"]
color = "f7e1bb"
name = "📦 Release Name v0.0.0"
description = "Codename of the release"

["🚀 Deploy"]
color = "0e8a16"
name = "🚀 Deploy"
description = "Code ready to production stage"

["🚨 Fix"]
color = "b60205"
name = "🚨 Fix"
description = "General fix on the bundle"

["🛠 Refactor"]
color = "0052cc"
name = "🛠 Refactor"
description = "Changes and optimization of the Code and Content"

["🤖 Schemas"]
color = "6c6d78"
name = "🤖 Schemas"
description = "Rich data integration"

["🦴 HTML"]
color = "fbca04"
name = "🦴 HTML"
description = "Markup HTML related code"

["🧨 Bug Fix"]
color = "d93f0b"
name = "🧨 Bug Fix"
description = "Specific fix of the bundle"

0 comments on commit 4766701

Please sign in to comment.