From 29efcab5afb4c1804100ebd9a0cfa0f38ac3e0b4 Mon Sep 17 00:00:00 2001 From: Harry Swift Date: Thu, 15 Jan 2026 14:05:22 +0000 Subject: [PATCH 01/10] Add issue templates for various report types --- .github/ISSUE_TEMPLATE/config.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yaml diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yaml new file mode 100644 index 0000000..601cfaa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yaml @@ -0,0 +1,22 @@ +blank_issues_enabled: false +issue_templates: + - name: "Bug Report" + description: "Report a bug in the system." + title: "[Bug]: " + labels: ["bug"] + body: "./ISSUE_TEMPLATE/bug_report.md" + - name: "Feature Request" + description: "Propose a new feature or improvement." + title: "[Feature]: " + labels: ["enhancement"] + body: "./ISSUE_TEMPLATE/feature_request.md" + - name: "Documentation" + description: "Suggest updates or additions to the documentation." + title: "[Docs]: " + labels: ["documentation"] + body: "./ISSUE_TEMPLATE/documentation.md" + - name: "General Report" + description: "Provide general feedback or inquiries." + title: "[General]: " + labels: ["general"] + body: "./ISSUE_TEMPLATE/general_report.md" From 5fbfde233ea7ce86635630f6ea696fa341a3d821 Mon Sep 17 00:00:00 2001 From: Harry Swift Date: Thu, 15 Jan 2026 14:06:14 +0000 Subject: [PATCH 02/10] Add documentation issue template --- .github/ISSUE_TEMPLATE/documentation.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/documentation.md diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md new file mode 100644 index 0000000..cf0f79a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -0,0 +1,19 @@ +--- +name: Documentation +about: Suggest updates or additions to documentation +title: "[Docs]: " +labels: documentation +assignees: '' +--- + +### Documentation Update +What part of the documentation needs to be updated or added? + +### Why Is This Needed? +Explain the importance of this update. + +### Suggested Changes +Provide a detailed description of the changes. + +### Additional Context +Include any related resources. From 8fdef3afca3cf41ae7aa40bd2f4e9678bcac7eca Mon Sep 17 00:00:00 2001 From: Harry Swift Date: Thu, 15 Jan 2026 14:06:55 +0000 Subject: [PATCH 03/10] Add general report issue template --- .github/ISSUE_TEMPLATE/general_report.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/general_report.md diff --git a/.github/ISSUE_TEMPLATE/general_report.md b/.github/ISSUE_TEMPLATE/general_report.md new file mode 100644 index 0000000..8538310 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/general_report.md @@ -0,0 +1,13 @@ +--- +name: General Report +about: Provide general feedback or inquiries +title: "[General]: " +labels: general +assignees: '' +--- + +### Feedback or Inquiry +Provide your feedback or inquiry. + +### Additional Information +Add any other relevant details here. From 7321e8a4c171b6f0e7fc2a7a00b4c2512b41c346 Mon Sep 17 00:00:00 2001 From: Harry Swift Date: Thu, 15 Jan 2026 14:07:42 +0000 Subject: [PATCH 04/10] Fix filename extension from `yaml` to `yml` --- .github/ISSUE_TEMPLATE/{config.yaml => config.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{config.yaml => config.yml} (100%) diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/config.yaml rename to .github/ISSUE_TEMPLATE/config.yml From d1f54f00634fa140d1f97576153870572f71c4ce Mon Sep 17 00:00:00 2001 From: Harry Swift Date: Thu, 15 Jan 2026 14:10:59 +0000 Subject: [PATCH 05/10] Update bug report template description --- .github/ISSUE_TEMPLATE/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 601cfaa..3c55e70 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,7 +1,7 @@ blank_issues_enabled: false issue_templates: - name: "Bug Report" - description: "Report a bug in the system." + description: "Report a bug in CodeEntropy." title: "[Bug]: " labels: ["bug"] body: "./ISSUE_TEMPLATE/bug_report.md" From 859f93bbd62eb36d20a2ac291dd73ae968eb752d Mon Sep 17 00:00:00 2001 From: Harry Swift Date: Thu, 15 Jan 2026 14:21:57 +0000 Subject: [PATCH 06/10] Update feature request issue template --- .github/ISSUE_TEMPLATE/feature_request.md | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index e74a335..a2ef0f6 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,4 +1,3 @@ - --- name: Feature request about: Suggest an idea for this project From 51fcb51de36ab39179ce5f1c2897c87aea76747c Mon Sep 17 00:00:00 2001 From: Harry Swift Date: Thu, 15 Jan 2026 14:22:20 +0000 Subject: [PATCH 07/10] Update bug report template header --- .github/ISSUE_TEMPLATE/bug_report.md | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 815a577..0a683c9 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,4 +1,3 @@ - --- name: Bug report about: Create a report to help us improve From c59bc6e25c3b18f9a971f9aeb504b41369f3c322 Mon Sep 17 00:00:00 2001 From: Harry Swift Date: Thu, 15 Jan 2026 14:26:21 +0000 Subject: [PATCH 08/10] Update bug report template title format --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 0a683c9..42988e0 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,7 +1,7 @@ --- name: Bug report about: Create a report to help us improve -title: '' +title: '[Bug]: ' labels: bug assignees: '' From 1199ce18acf71077baa26bccf00fdf82fd4254db Mon Sep 17 00:00:00 2001 From: Harry Swift Date: Thu, 15 Jan 2026 14:27:22 +0000 Subject: [PATCH 09/10] Update feature request template for CodeEntropy --- .github/ISSUE_TEMPLATE/feature_request.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index a2ef0f6..2d44440 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,8 +1,8 @@ --- name: Feature request -about: Suggest an idea for this project -title: '' -labels: '' +about: Suggest an idea for CodeEntropy +title: '[Feature]: ' +labels: 'enhancement' assignees: '' --- From 8bc4d1a3086916beeb3ddec15cc23301f9c85f48 Mon Sep 17 00:00:00 2001 From: Harry Swift Date: Thu, 15 Jan 2026 14:27:50 +0000 Subject: [PATCH 10/10] Specify 'CodeEntropy' in bug report template Updated the bug report template to specify 'CodeEntropy'. --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 42988e0..6172382 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,6 +1,6 @@ --- name: Bug report -about: Create a report to help us improve +about: Create a report to help us improve CodeEntropy title: '[Bug]: ' labels: bug assignees: ''