diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 103d9e5..9596731 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,6 +1,6 @@ -name: Bug Report -description: File a bug report here +name: 🐛 Bug Report title: "[BUG]: " +description: File a bug report here labels: ["bug"] assignees: ["LelouchFR"] body: diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 1548f42..53bdb69 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,7 +1,7 @@ -name: Feature Request +name: 💡 Feature Request +title: "[FEAT]: " description: Request a new feature labels: ["feature"] -title: "[FEAT]: " body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/icon_suggestion.yml b/.github/ISSUE_TEMPLATE/icon_suggestion.yml index e46cead..ac69b3c 100644 --- a/.github/ISSUE_TEMPLATE/icon_suggestion.yml +++ b/.github/ISSUE_TEMPLATE/icon_suggestion.yml @@ -1,7 +1,7 @@ name: 🚀 Suggest an Icon -title: '[NEW ICON] Skill Name' +title: "[NEW ICON]: " description: Suggest an icon to be added to the list! -labels: 'icon suggestion' +labels: ["icon suggestion"] body: - type: input id: skill-name diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..57bbb53 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +name: Build +on: + pull_request: + branches: + - main +jobs: + Build-Attempt: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: '1.18' + + - name: Install Go Packages + run: go mod tidy + - name: Add IconsJSON Variable + run: go run build.go + - name: Build index.go + run: go build ./api/index.go