From c16dd6486bb189f9f73dff753aade042c669e385 Mon Sep 17 00:00:00 2001 From: John Ludlow Date: Fri, 24 Apr 2026 12:26:16 +0100 Subject: [PATCH 1/8] Add issue templates for bug fixes, feature requests, technical debt, refactoring, and epics --- .github/ISSUE_TEMPLATE/bug_fix.yml | 112 +++++++++++++++++ .github/ISSUE_TEMPLATE/bug_report.yml | 87 +++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 8 ++ .github/ISSUE_TEMPLATE/epic.yml | 135 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yml | 112 +++++++++++++++++ .github/ISSUE_TEMPLATE/refactor.yml | 112 +++++++++++++++++ .github/ISSUE_TEMPLATE/technical_debt.yml | 112 +++++++++++++++++ 7 files changed, 678 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_fix.yml create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/epic.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml create mode 100644 .github/ISSUE_TEMPLATE/refactor.yml create mode 100644 .github/ISSUE_TEMPLATE/technical_debt.yml diff --git a/.github/ISSUE_TEMPLATE/bug_fix.yml b/.github/ISSUE_TEMPLATE/bug_fix.yml new file mode 100644 index 0000000..654a7cf --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_fix.yml @@ -0,0 +1,112 @@ +name: Bug Fix +description: Track implementation of a bug fix with detailed planning and requirements +title: "[Bug Fix]: " +labels: ["bug"] +assignees: [] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to report a bug! Please fill out the following sections to help us investigate and fix the issue. + + - type: input + id: overview + attributes: + label: Overview + description: Detailed description of the bug including purpose and intent as well as intended use cases + placeholder: Enter a clear and concise description of what the bug is + validations: + required: true + + - type: textarea + id: definition-of-terms + attributes: + label: Definition of Terms + description: Detailed table of terms not considered 'common english' related to this bug + placeholder: | + | Term | Meaning | Reference | + | ---- | ------- | --------- | + | | | | + render: markdown + validations: + required: false + + - type: textarea + id: architectural-considerations + attributes: + label: Architectural Considerations and Constraints + description: Detailed model of the bug's architectural consideration and flow of data within the system + placeholder: | + - Include constraints such as performance considerations or affected components + - Include ASCII-art or mermaid diagrams where appropriate + - Include KaTeX math where relevant, with plain-English explanations + render: markdown + validations: + required: false + + - type: textarea + id: implementation-guide + attributes: + label: Implementation Guide + description: Detailed step-by-step implementation guide for fixing this bug, including code snippets, unit tests and benchmarks + placeholder: | + If requested, write steps to follow Test Driven Development principles, leading with a minimal breaking test, followed by a minimal change to fix the test, followed by refactor, repeating until the fix is complete. + + If the fix is extensive and complex, create multiple subsections to make these steps more legible. + render: markdown + validations: + required: false + + - type: textarea + id: plan-requirements + attributes: + label: Plan Requirements + description: Detailed description of the fix and its requirements + placeholder: | + A list of plan-level requirements in Given/When/Then syntax. + + If a fix is considered complete then indicate with a ***COMPLETE*** prefix. + + ```markdown + - (***requirement status***) Requirement descriptive text + - GIVEN a precondition + - WHEN an event happens + - THEN an action is taken / a result property is true + + > Details of missing implementation / link to phase with missing implementation + ``` + render: markdown + validations: + required: false + + - type: textarea + id: related-plan-docs + attributes: + label: Related Plan Documentation + description: Link to related plan documentation files in the repository + placeholder: | + If this issue is part of a larger plan, link to the related documentation: + + - Parent plan: `docs/plans/.md` - Overall plan this issue is part of + - Related plans: `docs/plans/.md` - Related work or dependent plans + + For complex fixes, corresponding detailed documentation may exist in: + - `docs/plans//` - Folder containing detailed planning documents + - `docs/plans//.md` - Specific topic documentation + + Reference the existing plan structure when linking related documentation. + render: markdown + validations: + required: false + + - type: textarea + id: references + attributes: + label: References + description: A list of links to external resources such as library documentation or articles about relevant techniques + placeholder: | + - Link 1 + - Link 2 + render: markdown + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..49a13be --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,87 @@ +name: Bug Report +description: Report a bug or issue in the GameEngineAdapter +title: "[Bug]: " +labels: ["bug"] +assignees: [] +body: + - type: markdown + attributes: + value: | + Thanks for reporting a bug! Please fill out the following sections to help us investigate and understand the issue. + + - type: textarea + id: description + attributes: + label: Description + description: A clear and concise description of what the bug is + placeholder: Describe the bug in detail + validations: + required: true + + - type: textarea + id: expected-behaviour + attributes: + label: Expected Behaviour + description: What you expected to happen + placeholder: Describe what should happen + validations: + required: true + + - type: textarea + id: actual-behaviour + attributes: + label: Actual Behaviour + description: What actually happened instead + placeholder: Describe what actually happens + validations: + required: true + + - type: textarea + id: reproduction-steps + attributes: + label: Steps to Reproduce + description: Steps to reproduce the behavior + placeholder: | + 1. ... + 2. ... + 3. ... + render: markdown + validations: + required: false + + - type: textarea + id: environment + attributes: + label: Environment + description: Details about your environment + placeholder: | + - .NET SDK version: + - OS: + - Adapter/Engine: + - Any other relevant details: + render: markdown + validations: + required: false + + - type: textarea + id: error-logs + attributes: + label: Error Logs or Stack Trace + description: Any error messages or stack traces + placeholder: | + ``` + Paste error logs or stack trace here + ``` + render: markdown + validations: + required: false + + - type: textarea + id: additional-context + attributes: + label: Additional Context + description: Any other context or screenshots that might help + placeholder: Add any other context here + render: markdown + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..a48dc38 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: GameEngineAdapter Documentation + url: https://github.com/JohnLudlow/GameEngineAdapter/blob/main/README.md + about: Please check the documentation for questions about how to use the library. + - name: Discussion Forum + url: https://github.com/JohnLudlow/GameEngineAdapter/discussions + about: Ask and answer questions about the GameEngineAdapter. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/epic.yml b/.github/ISSUE_TEMPLATE/epic.yml new file mode 100644 index 0000000..57dab23 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/epic.yml @@ -0,0 +1,135 @@ +name: Epic/Parent Issue +description: Track a large feature or body of work that will be broken down into multiple child issues +title: "[Epic]: " +labels: ["epic"] +assignees: [] +body: + - type: markdown + attributes: + value: | + Thanks for proposing a large body of work! Please fill out the following sections to help us understand and track this epic. + + - type: input + id: overview + attributes: + label: Overview + description: Detailed description of the epic including purpose and intent as well as intended use cases + placeholder: Enter a clear and concise description of what this epic encompasses + validations: + required: true + + - type: textarea + id: definition-of-terms + attributes: + label: Definition of Terms + description: Detailed table of terms not considered 'common english' related to this epic + placeholder: | + | Term | Meaning | Reference | + | ---- | ------- | --------- | + | | | | + render: markdown + validations: + required: false + + - type: textarea + id: architectural-considerations + attributes: + label: Architectural Considerations and Constraints + description: Detailed model of the epic's architectural consideration and flow of data within the system + placeholder: | + - Include constraints such as performance considerations or affected components + - Include ASCII-art or mermaid diagrams where appropriate + - Include KaTeX math where relevant, with plain-English explanations + render: markdown + validations: + required: false + + - type: textarea + id: implementation-guide + attributes: + label: Implementation Guide + description: Detailed step-by-step implementation guide for this epic, including code snippets, unit tests and benchmarks + placeholder: | + If requested, write steps to follow Test Driven Development principles, leading with a minimal breaking test, followed by a minimal change to fix the test, followed by refactor, repeating until the epic is complete. + + If the epic is extensive and complex, create multiple subsections to make these steps more legible. + render: markdown + validations: + required: false + + - type: textarea + id: epic-requirements + attributes: + label: Epic Requirements + description: Detailed description of the epic and its requirements + placeholder: | + A list of epic-level requirements in Given/When/Then syntax. + + If the epic is considered complete then indicate with a ***COMPLETE*** prefix. + + ```markdown + - (***requirement status***) Requirement descriptive text + - GIVEN a precondition + - WHEN an event happens + - THEN an action is taken / a result property is true + + > Details of missing implementation / link to phase with missing implementation + ``` + render: markdown + validations: + required: false + + - type: textarea + id: child-issues + attributes: + label: Child Issues + description: Break this epic down into child issues with appropriate links + placeholder: | + List the child issues that make up this epic. For each child issue: + - [ ] Child issue title - Brief description + + When child issues are created, link them here and update their status. + + Example structure: + - [ ] Child Issue 1: Description + - Link: https://github.com/JohnLudlow/GameEngineAdapter/issues/XXX + - Status: Not started/In progress/Completed + + - [ ] Child Issue 2: Description + - Link: https://github.com/JohnLudlow/GameEngineAdapter/issues/XXX + - Status: Not started/In progress/Completed + render: markdown + validations: + required: false + + - type: textarea + id: related-plan-docs + attributes: + label: Related Plan Documentation + description: Link to related plan documentation files in the repository + placeholder: | + If this epic is part of a larger plan or body of work, link to the related documentation: + + - Parent plan: `docs/plans/.md` - Overall plan this epic is part of + - Related plans: `docs/plans/.md` - Related work or dependent plans + + For large epics, detailed documentation may exist in a well-ordered file structure: + - `docs/plans//` - Folder containing detailed planning documents + - `docs/plans//.md` - Specific topic documentation + + This mirrors the hierarchy of related GitHub issues, with epic-level plans linking to child work. Reference the existing plan structure when linking related documentation. + render: markdown + validations: + required: false + + - type: textarea + id: references + attributes: + label: References + description: A list of links to external resources such as library documentation or articles about relevant techniques + placeholder: | + - Link 1 + - Link 2 + render: markdown + validations: + required: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..d2c935e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,112 @@ +name: Feature Request +description: Request a new feature for the GameEngineAdapter +title: "[Feature]: " +labels: ["enhancement"] +assignees: [] +body: + - type: markdown + attributes: + value: | + Thanks for suggesting a new feature! Please fill out the following sections to help us understand and evaluate your request. + + - type: input + id: overview + attributes: + label: Overview + description: Detailed description of the feature including purpose and intent as well as intended use cases + placeholder: Enter a clear and concise description of what the feature should do + validations: + required: true + + - type: textarea + id: definition-of-terms + attributes: + label: Definition of Terms + description: Detailed table of terms not considered 'common english' related to this feature + placeholder: | + | Term | Meaning | Reference | + | ---- | ------- | --------- | + | | | | + render: markdown + validations: + required: false + + - type: textarea + id: architectural-considerations + attributes: + label: Architectural Considerations and Constraints + description: Detailed model of the feature's architectural consideration and flow of data within the system + placeholder: | + - Include constraints such as performance considerations or affected components + - Include ASCII-art or mermaid diagrams where appropriate + - Include KaTeX math where relevant, with plain-English explanations + render: markdown + validations: + required: false + + - type: textarea + id: implementation-guide + attributes: + label: Implementation Guide + description: Detailed step-by-step implementation guide for this feature, including code snippets, unit tests and benchmarks + placeholder: | + If requested, write steps to follow Test Driven Development principles, leading with a minimal breaking test, followed by a minimal change to fix the test, followed by refactor, repeating until the feature is complete. + + If the feature is extensive and complex, create multiple subsections to make these steps more legible. + render: markdown + validations: + required: false + + - type: textarea + id: plan-requirements + attributes: + label: Plan Requirements + description: Detailed description of the feature and its requirements + placeholder: | + A list of plan-level requirements in Given/When/Then syntax. + + If a feature is considered complete then indicate with a ***COMPLETE*** prefix. + + ```markdown + - (***requirement status***) Requirement descriptive text + - GIVEN a precondition + - WHEN an event happens + - THEN an action is taken / a result property is true + + > Details of missing implementation / link to phase with missing implementation + ``` + render: markdown + validations: + required: false + + - type: textarea + id: related-plan-docs + attributes: + label: Related Plan Documentation + description: Link to related plan documentation files in the repository + placeholder: | + If this issue is part of a larger plan, link to the related documentation: + + - Parent plan: `docs/plans/.md` - Overall plan this issue is part of + - Related plans: `docs/plans/.md` - Related work or dependent plans + + For complex features, corresponding detailed documentation may exist in: + - `docs/plans//` - Folder containing detailed planning documents + - `docs/plans//.md` - Specific topic documentation + + Reference the existing plan structure when linking related documentation. + render: markdown + validations: + required: false + + - type: textarea + id: references + attributes: + label: References + description: A list of links to external resources such as library documentation or articles about relevant techniques + placeholder: | + - Link 1 + - Link 2 + render: markdown + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/refactor.yml b/.github/ISSUE_TEMPLATE/refactor.yml new file mode 100644 index 0000000..6481d01 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/refactor.yml @@ -0,0 +1,112 @@ +name: Refactoring +description: Request for code refactoring to improve structure without changing behavior +title: "[Refactor]: " +labels: ["refactor"] +assignees: [] +body: + - type: markdown + attributes: + value: | + Thanks for suggesting a refactoring! Please fill out the following sections to help us understand and evaluate your request. + + - type: input + id: overview + attributes: + label: Overview + description: Detailed description of the refactoring including purpose and intent as well as intended use cases + placeholder: Enter a clear and concise description of what should be refactored + validations: + required: true + + - type: textarea + id: definition-of-terms + attributes: + label: Definition of Terms + description: Detailed table of terms not considered 'common english' related to this refactoring + placeholder: | + | Term | Meaning | Reference | + | ---- | ------- | --------- | + | | | | + render: markdown + validations: + required: false + + - type: textarea + id: architectural-considerations + attributes: + label: Architectural Considerations and Constraints + description: Detailed model of the refactoring's architectural consideration and flow of data within the system + placeholder: | + - Include constraints such as performance considerations or affected components + - Include ASCII-art or mermaid diagrams where appropriate + - Include KaTeX math where relevant, with plain-English explanations + render: markdown + validations: + required: false + + - type: textarea + id: implementation-guide + attributes: + label: Implementation Guide + description: Detailed step-by-step implementation guide for this refactoring, including code snippets, unit tests and benchmarks + placeholder: | + If requested, write steps to follow Test Driven Development principles, leading with a minimal breaking test, followed by a minimal change to fix the test, followed by refactor, repeating until the refactoring is complete. + + If the refactoring is extensive and complex, create multiple subsections to make these steps more legible. + render: markdown + validations: + required: false + + - type: textarea + id: plan-requirements + attributes: + label: Plan Requirements + description: Detailed description of the refactoring and its requirements + placeholder: | + A list of plan-level requirements in Given/When/Then syntax. + + If a refactoring is considered complete then indicate with a ***COMPLETE*** prefix. + + ```markdown + - (***requirement status***) Requirement descriptive text + - GIVEN a precondition + - WHEN an event happens + - THEN an action is taken / a result property is true + + > Details of missing implementation / link to phase with missing implementation + ``` + render: markdown + validations: + required: false + + - type: textarea + id: related-plan-docs + attributes: + label: Related Plan Documentation + description: Link to related plan documentation files in the repository + placeholder: | + If this issue is part of a larger plan, link to the related documentation: + + - Parent plan: `docs/plans/.md` - Overall plan this issue is part of + - Related plans: `docs/plans/.md` - Related work or dependent plans + + For complex refactorings, corresponding detailed documentation may exist in: + - `docs/plans//` - Folder containing detailed planning documents + - `docs/plans//.md` - Specific topic documentation + + Reference the existing plan structure when linking related documentation. + render: markdown + validations: + required: false + + - type: textarea + id: references + attributes: + label: References + description: A list of links to external resources such as library documentation or articles about relevant techniques + placeholder: | + - Link 1 + - Link 2 + render: markdown + validations: + required: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/technical_debt.yml b/.github/ISSUE_TEMPLATE/technical_debt.yml new file mode 100644 index 0000000..274d72c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/technical_debt.yml @@ -0,0 +1,112 @@ +name: Technical Debt +description: Report technical debt that needs to be addressed +title: "[Tech Debt]: " +labels: ["technical debt"] +assignees: [] +body: + - type: markdown + attributes: + value: | + Thanks for reporting technical debt! Please fill out the following sections to help us understand and prioritize the work. + + - type: input + id: overview + attributes: + label: Overview + description: Detailed description of the technical debt including purpose and impact + placeholder: Enter a clear and concise description of the technical debt + validations: + required: true + + - type: textarea + id: definition-of-terms + attributes: + label: Definition of Terms + description: Detailed table of terms not considered 'common english' related to this technical debt + placeholder: | + | Term | Meaning | Reference | + | ---- | ------- | --------- | + | | | | + render: markdown + validations: + required: false + + - type: textarea + id: architectural-considerations + attributes: + label: Architectural Considerations and Constraints + description: Detailed model of the technical debt's architectural consideration and flow of data within the system + placeholder: | + - Include constraints such as performance considerations or affected components + - Include ASCII-art or mermaid diagrams where appropriate + - Include KaTeX math where relevant, with plain-English explanations + render: markdown + validations: + required: false + + - type: textarea + id: implementation-guide + attributes: + label: Implementation Guide + description: Detailed step-by-step implementation guide for addressing this technical debt, including code snippets, unit tests and benchmarks + placeholder: | + If requested, write steps to follow Test Driven Development principles, leading with a minimal breaking test, followed by a minimal change to fix the test, followed by refactor, repeating until the debt is resolved. + + If the work is extensive and complex, create multiple subsections to make these steps more legible. + render: markdown + validations: + required: false + + - type: textarea + id: plan-requirements + attributes: + label: Plan Requirements + description: Detailed description of the work and its requirements + placeholder: | + A list of plan-level requirements in Given/When/Then syntax. + + If the work is considered complete then indicate with a ***COMPLETE*** prefix. + + ```markdown + - (***requirement status***) Requirement descriptive text + - GIVEN a precondition + - WHEN an event happens + - THEN an action is taken / a result property is true + + > Details of missing implementation / link to phase with missing implementation + ``` + render: markdown + validations: + required: false + + - type: textarea + id: related-plan-docs + attributes: + label: Related Plan Documentation + description: Link to related plan documentation files in the repository + placeholder: | + If this issue is part of a larger plan, link to the related documentation: + + - Parent plan: `docs/plans/.md` - Overall plan this issue is part of + - Related plans: `docs/plans/.md` - Related work or dependent plans + + For complex technical debt items, corresponding detailed documentation may exist in: + - `docs/plans//` - Folder containing detailed planning documents + - `docs/plans//.md` - Specific topic documentation + + Reference the existing plan structure when linking related documentation. + render: markdown + validations: + required: false + + - type: textarea + id: references + attributes: + label: References + description: A list of links to external resources such as library documentation or articles about relevant techniques + placeholder: | + - Link 1 + - Link 2 + render: markdown + validations: + required: false \ No newline at end of file From 715295761ec5731889d2b74ea56c5d842ec33572 Mon Sep 17 00:00:00 2001 From: JohnLudlow Date: Fri, 24 Apr 2026 12:37:40 +0100 Subject: [PATCH 2/8] Update .github/ISSUE_TEMPLATE/bug_fix.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug_fix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_fix.yml b/.github/ISSUE_TEMPLATE/bug_fix.yml index 654a7cf..a84278e 100644 --- a/.github/ISSUE_TEMPLATE/bug_fix.yml +++ b/.github/ISSUE_TEMPLATE/bug_fix.yml @@ -22,7 +22,7 @@ body: id: definition-of-terms attributes: label: Definition of Terms - description: Detailed table of terms not considered 'common english' related to this bug + description: Detailed table of terms not considered 'common English' related to this bug placeholder: | | Term | Meaning | Reference | | ---- | ------- | --------- | From 2eda92fcf240d838d8d1dff07ef71f5fbb700e00 Mon Sep 17 00:00:00 2001 From: JohnLudlow Date: Fri, 24 Apr 2026 12:37:54 +0100 Subject: [PATCH 3/8] Update .github/ISSUE_TEMPLATE/bug_fix.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug_fix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_fix.yml b/.github/ISSUE_TEMPLATE/bug_fix.yml index a84278e..94ea882 100644 --- a/.github/ISSUE_TEMPLATE/bug_fix.yml +++ b/.github/ISSUE_TEMPLATE/bug_fix.yml @@ -7,7 +7,7 @@ body: - type: markdown attributes: value: | - Thanks for taking the time to report a bug! Please fill out the following sections to help us investigate and fix the issue. + Thanks for taking the time to plan and track a bug fix! Please fill out the following sections to document the implementation approach, requirements, and supporting details. - type: input id: overview From 00b4bcbce45ebb49fd93eff2d38a3f3b523b4b11 Mon Sep 17 00:00:00 2001 From: JohnLudlow Date: Fri, 24 Apr 2026 12:38:04 +0100 Subject: [PATCH 4/8] Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 49a13be..2577546 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -40,7 +40,7 @@ body: id: reproduction-steps attributes: label: Steps to Reproduce - description: Steps to reproduce the behavior + description: Steps to reproduce the behaviour placeholder: | 1. ... 2. ... From a5d63fa10db96d25ae736a00d180a11db33b7302 Mon Sep 17 00:00:00 2001 From: JohnLudlow Date: Fri, 24 Apr 2026 12:38:12 +0100 Subject: [PATCH 5/8] Update .github/ISSUE_TEMPLATE/refactor.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/refactor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/refactor.yml b/.github/ISSUE_TEMPLATE/refactor.yml index 6481d01..8d1e128 100644 --- a/.github/ISSUE_TEMPLATE/refactor.yml +++ b/.github/ISSUE_TEMPLATE/refactor.yml @@ -22,7 +22,7 @@ body: id: definition-of-terms attributes: label: Definition of Terms - description: Detailed table of terms not considered 'common english' related to this refactoring + description: Detailed table of terms not considered 'common English' related to this refactoring placeholder: | | Term | Meaning | Reference | | ---- | ------- | --------- | From 24f51287e0e342e8553749e2b0fe50a0122da5bc Mon Sep 17 00:00:00 2001 From: JohnLudlow Date: Fri, 24 Apr 2026 12:38:19 +0100 Subject: [PATCH 6/8] Update .github/ISSUE_TEMPLATE/technical_debt.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/technical_debt.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/technical_debt.yml b/.github/ISSUE_TEMPLATE/technical_debt.yml index 274d72c..f60cb5f 100644 --- a/.github/ISSUE_TEMPLATE/technical_debt.yml +++ b/.github/ISSUE_TEMPLATE/technical_debt.yml @@ -22,7 +22,7 @@ body: id: definition-of-terms attributes: label: Definition of Terms - description: Detailed table of terms not considered 'common english' related to this technical debt + description: Detailed table of terms not considered 'common English' related to this technical debt placeholder: | | Term | Meaning | Reference | | ---- | ------- | --------- | From 86400ec1e50024c153de59391e331da37fd517a2 Mon Sep 17 00:00:00 2001 From: JohnLudlow Date: Fri, 24 Apr 2026 12:38:30 +0100 Subject: [PATCH 7/8] Update .github/ISSUE_TEMPLATE/feature_request.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index d2c935e..ad7a4a9 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -22,7 +22,7 @@ body: id: definition-of-terms attributes: label: Definition of Terms - description: Detailed table of terms not considered 'common english' related to this feature + description: Detailed table of terms not considered 'common English' related to this feature placeholder: | | Term | Meaning | Reference | | ---- | ------- | --------- | From 3bf1ceb2289ef2686fc1123f97dfaf951a24f668 Mon Sep 17 00:00:00 2001 From: JohnLudlow Date: Fri, 24 Apr 2026 12:38:38 +0100 Subject: [PATCH 8/8] Update .github/ISSUE_TEMPLATE/epic.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/epic.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/epic.yml b/.github/ISSUE_TEMPLATE/epic.yml index 57dab23..d4df4c7 100644 --- a/.github/ISSUE_TEMPLATE/epic.yml +++ b/.github/ISSUE_TEMPLATE/epic.yml @@ -22,7 +22,7 @@ body: id: definition-of-terms attributes: label: Definition of Terms - description: Detailed table of terms not considered 'common english' related to this epic + description: Detailed table of terms not considered 'common English' related to this epic placeholder: | | Term | Meaning | Reference | | ---- | ------- | --------- |