Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Bug
description: Report a bug or unintended behavior
title: "fix: <description>"
labels:
- fix
assignees:
- calvinmcelvain
- Collin-McElvain

body:
- type: textarea
id: description
attributes:
label: Bug Description
description: What is happening?
placeholder: Describe the bug clearly
validations:
required: true

- type: textarea
id: reproduce
attributes:
label: Steps to Reproduce
placeholder: |
1. Start game
2. Open menu
3. Enemy freezes
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected Behavior
placeholder: (Optional) What should happen instead?

- type: textarea
id: notes
attributes:
label: Notes
description: (Optional) Logs, screenshots, theories, related systems, etc.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Documentation
description: Add or improve project documentation
title: "docs: <description>"
labels:
- docs
assignees:
- calvinmcelvain
- Collin-McElvain

body:
- type: textarea
id: summary
attributes:
label: Documentation Needed
description: What documentation should be added or updated?
placeholder: README updates, architecture docs, setup guide, etc.
validations:
required: true

- type: textarea
id: notes
attributes:
label: Notes
placeholder: (Optional) Links, screenshots, related issues, references, etc.
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Feature
description: Propose a new feature or gameplay/system improvement
title: "feat: <description>"
labels:
- feat
assignees:
- calvinmcelvain
- Collin-McElvain

body:
- type: textarea
id: summary
attributes:
label: Summary
description: What are we adding?
placeholder: Add a short description of the feature
validations:
required: true

- type: textarea
id: motivation
attributes:
label: Motivation
description: Why does this feature matter?
placeholder: (Optional) Explain the gameplay, technical, or UX reason

- type: textarea
id: implementation
attributes:
label: Possible Implementation
description: Optional notes on how this could work
placeholder: (Optional) Systems, algorithms, files, ideas, etc.
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/refactor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Refactor
description: Improve internal structure, readability, or maintainability
title: "refactor: <description>"
labels:
- refactor
assignees:
- calvinmcelvain
- Collin-McElvain

body:
- type: textarea
id: problem
attributes:
label: Current Problem
description: What is awkward, duplicated, hard to maintain, etc.?
placeholder: Describe the technical debt or design issue
validations:
required: true

- type: textarea
id: proposal
attributes:
label: Proposed Refactor
description: What should change structurally?
placeholder: File structure, abstraction changes, simplification, etc.

- type: textarea
id: notes
attributes:
label: Notes
placeholder: (Optional) Related systems, risks, dependencies, etc.
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Tests
description: Add or improve automated/manual testing
title: "test: <description>"
labels:
- test
assignees:
- calvinmcelvain
- Collin-McElvain

body:
- type: textarea
id: scope
attributes:
label: Test Scope
description: What should be tested?
placeholder: Specific system, mechanic, function, or workflow
validations:
required: true

- type: textarea
id: notes
attributes:
label: Notes
placeholder: (Optional) Frameworks, tooling, blockers, related bugs, etc.
Loading