-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from the-kolibri/dev
Add | Dev => Main | New Release Colibrí v1.0.0
- Loading branch information
Showing
2 changed files
with
15 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,21 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Kolibri's repository configuration | ||
# Kolibri's base repository configuration | ||
# v1.0.0 | ||
|
||
G_U="the-kolibri" # GITHUB_USER | ||
L_O="⚙️ Settings" # LABEL_ONE | ||
L_T="📦 Release Name v0.0.0" # LABEL_TWO | ||
L_T="📦 Octopus" # LABEL_TWO | ||
MS="Base repo files" # MILESTONE | ||
PN="GitHub Cli Lab" # PROJECT NAME | ||
|
||
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}" | ||
gh issue create -t 'Add Konfig setup scripts' -b 'Konfig custom script for repo setup' -l "$L_O,$L_T" -a ${G_U} -m "${MS}" -p "${PN}" | ||
gh issue create -t 'Add README file' -b 'Custom README file for the project' -l "$L_O,$L_T" -a ${G_U} -m "${MS}" -p "${PN}" | ||
gh issue create -t 'Add .gitignore file' -b 'Basic .gitignore file for the project' -l "$L_O,$L_T" -a ${G_U} -m "${MS}" -p "${PN}" | ||
gh issue create -t 'Add License file' -b 'Project license file' -l "$L_O,$L_T" -a ${G_U} -m "${MS}" -p "${PN}" | ||
gh issue create -t 'Add GitHub Template files' -b 'Custom GitHub Issues and Pull Request template files for the project' -l "$L_O,$L_T" -a ${G_U} -m "${MS}" -p "${PN}" | ||
gh issue create -t 'Add README cover image' -b 'Custom README cover image for the project' -l "$L_O,$L_T" -a ${G_U} -m "${MS}" -p "${PN}" | ||
} | ||
|
||
CoreIssues |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters