Commit 8b85d289 authored by w8385's avatar w8385
Browse files

Update Issue templates seperated

parent 1910e52f
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -57,5 +57,3 @@ body:
        1.
        2.
        3.
    validations:
      required: true
+3 −14
Original line number Diff line number Diff line
name: "Maintenance or Chore Issue"
description: "Track maintenance tasks, build updates, or CI/CD improvements"
labels: [ "type/maintenance", "type/chore" ]
name: "Chore Issue"
description: "Build, configuration, and maintenance tasks"
labels: [ "type/chore" ]
body:
  - type: markdown
    attributes:
      value: |
        ### Maintenance  
        Tasks that keep the codebase stable and healthy.
        
        - Includes: Dependency updates, cleanup of deprecated code, resolving warnings.
        - Goal: Prevent technical debt and ensure long-term maintainability.
        
        ### Chore  
        Non-functional tasks related to configuration, tooling, or infrastructure.
        
        - Includes: CI/CD changes, build system tweaks, formatting configs.
        - Goal: Improve the development workflow and internal operations.

        ---
        
        Please keep only one appropriate type/* label and remove the others if present.

  - type: textarea
    attributes:
      label: Summary
+1 −1
Original line number Diff line number Diff line
name: "Documentation Issue"
description: "Report missing, incorrect, or outdated documentation"
description: "Documentation related"
labels: [ "type/documentation" ]
body:
  - type: markdown
+3 −14
Original line number Diff line number Diff line
name: "Feature or Enhancement Issue"
description: "Suggest a new feature or improvement"
labels: [ "type/feature", "type/enhancement" ]
name: "Enhancement Issue"
description: "Improvements to existing features"
labels: [ "type/enhancement" ]
body:
  - type: markdown
    attributes:
      value: |
        ### Feature
        A request to add entirely new functionality.
        
        - Includes: Motivation, proposed solution, and use cases.
        - Goal: Expand capabilities of the system.
        
        ### Enhancement
        An improvement to an existing feature.
        
        - Includes: Pain points in current behavior and better alternatives.
        - Goal: Improve usability, performance, or completeness.

        ---
        
        Please keep only one appropriate type/* label and remove the others if present.

  - type: textarea
    attributes:
      label: Summary
+46 −0
Original line number Diff line number Diff line
name: "Feature Issue"
description: "New feature requests"
labels: [ "type/feature" ]
body:
  - type: markdown
    attributes:
      value: |
        A request to add entirely new functionality.
        
        - Includes: Motivation, proposed solution, and use cases.
        - Goal: Expand capabilities of the system.

  - type: textarea
    attributes:
      label: Summary
      description: Briefly describe the feature or enhancement you're suggesting.
    validations:
      required: true

  - type: textarea
    attributes:
      label: Problem
      description: Why is this needed? What problem does it solve?
    validations:
      required: true

  - type: textarea
    attributes:
      label: Proposed Solution
      description: Describe your suggested solution or behavior.
    validations:
      required: true

  - type: textarea
    attributes:
      label: Alternatives Considered
      description: Have you thought of other approaches or solutions?
    validations:
      required: false

  - type: textarea
    attributes:
      label: Scope / Dependencies
      description: What parts of the system would be affected or require changes?
    validations:
      required: false
Loading