From 941aa7b723c7a799bf0091bcd627ffaedc289521 Mon Sep 17 00:00:00 2001 From: BWM0223 Date: Sun, 21 Jun 2026 08:56:43 -0700 Subject: [PATCH 1/4] fix: Add GitHub issue templates (#65) --- .github/ISSUE_TEMPLATE/bug-report.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 0000000..77cfb84 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,17 @@ +name: Bug Report +about: Report a bug you've encountered +title: 'Bug Report: [Component] - [Error Message]' +labels: bug, needs-verification +body: | + - **Component**: [e.g., Auth, UI, Backend] + - **Environment**: + - OS: + - Browser (if applicable): + - Version: + - **Steps to reproduce**: + 1. + 2. + 3. + - **Expected behavior**: + - **Actual behavior**: + - **Screenshots or logs** (if applicable): \ No newline at end of file From 28924ee5c014f73a482346ba8bbde8b78d05782e Mon Sep 17 00:00:00 2001 From: BWM0223 Date: Sun, 21 Jun 2026 08:56:43 -0700 Subject: [PATCH 2/4] fix: Add GitHub issue templates (#65) --- .github/ISSUE_TEMPLATE/feature-request.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yml diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 0000000..a0e3214 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,10 @@ +name: Feature Request +about: Suggest a new feature or improvement +title: 'Feature Request: [Feature Name]' +labels: feature, enhancement +body: | + - **Feature name**: + - **Description**: + - **Why would this be useful**? + - **Alternatives considered**: + - **Additional context**: \ No newline at end of file From 391d5fe22b39472ee82798d27990e220f07c8036 Mon Sep 17 00:00:00 2001 From: BWM0223 Date: Sun, 21 Jun 2026 08:56:44 -0700 Subject: [PATCH 3/4] fix: Add GitHub issue templates (#65) --- .github/ISSUE_TEMPLATE/security.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/security.yml diff --git a/.github/ISSUE_TEMPLATE/security.yml b/.github/ISSUE_TEMPLATE/security.yml new file mode 100644 index 0000000..5f31929 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/security.yml @@ -0,0 +1,11 @@ +name: Security Issue +about: Report a security vulnerability +title: 'Security Issue: [Vulnerability Type]' +labels: security, triage +body: | + - **Type**: [e.g., XSS, CSRF, Auth Bypass, Data Leak] + - **Description**: + - **Steps to reproduce** (if applicable): + - **Impact**: + - **Patches** (if available): + - **Contact**: Please reach out via the security contact in SECURITY.md. \ No newline at end of file From 6412ebdbaef8b2adb330001b32f123940c0dfe4f Mon Sep 17 00:00:00 2001 From: BWM0223 Date: Sun, 21 Jun 2026 08:56:44 -0700 Subject: [PATCH 4/4] fix: Add GitHub issue templates (#65) --- .github/config.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/config.yml diff --git a/.github/config.yml b/.github/config.yml new file mode 100644 index 0000000..05bfb73 --- /dev/null +++ b/.github/config.yml @@ -0,0 +1,7 @@ +issue-templates: + - name: bug-report + labels: bug, needs-verification + - name: feature-request + labels: feature, enhancement + - name: security + labels: security, triage \ No newline at end of file