From 32be923cdee278a90395bcc05a9dd8657bf2a6b9 Mon Sep 17 00:00:00 2001 From: Justin Date: Wed, 19 Aug 2026 13:48:41 -0500 Subject: [PATCH 1/2] Adds issue templates and a PR template --- .../bug_report_issue_template.yml | 49 +++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 ++ .../feature_request_issue_template.yml | 28 +++++++++++ .../ISSUE_TEMPLATE/interal_issue_template.yml | 28 +++++++++++ .github/pull_request_template.md | 25 ++++++++++ 5 files changed, 135 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report_issue_template.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request_issue_template.yml create mode 100644 .github/ISSUE_TEMPLATE/interal_issue_template.yml create mode 100644 .github/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug_report_issue_template.yml b/.github/ISSUE_TEMPLATE/bug_report_issue_template.yml new file mode 100644 index 0000000..1ea70a0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report_issue_template.yml @@ -0,0 +1,49 @@ +name: 🪲 Bug Report +description: File a bug report +labels: ['Bug'] +body: + - type: markdown + attributes: + value: Thanks for taking the time to fill out this bug report! By submitting this issue, you agree to follow our [Code of Conduct](https://nebula-labs.atlassian.net/wiki/x/vAA-DQ) + - type: textarea + id: description + attributes: + label: Description + description: What is the bug? + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: Steps To Reproduce + description: Help us reproduce this bug. If helpful, you can include screenshots or logs! Be sure to wrap logs with ```` ```bash ```` before and ```` ``` ```` after. + validations: + required: true + - type: textarea + id: additional-context + attributes: + label: Additional Context + description: Describe the bug in more detail. You can include related issues, helpful background knowledge, related documentation, or anything else that will help. + validations: + required: false + - type: dropdown + id: version + attributes: + label: Version + description: Where did you find this bug? + options: + - Chrome web store + - Firefox add-ons store + - a local development branch + validations: + required: true + - type: textarea + id: environment + attributes: + label: Environment + description: What environment were you using when you encountered this bug? + value: | + Browser: + Operating System: + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..b1ad450 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: General Contact + url: https://about.utdnebula.com/about/contact + about: Get in touch here diff --git a/.github/ISSUE_TEMPLATE/feature_request_issue_template.yml b/.github/ISSUE_TEMPLATE/feature_request_issue_template.yml new file mode 100644 index 0000000..c83d571 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request_issue_template.yml @@ -0,0 +1,28 @@ +name: 💡 Feature Request +description: Suggest an idea for this project, e.g., a new feature, an improvement to an existing feature, or a new integration +labels: ['Feature'] +body: + - type: markdown + attributes: + value: Thanks for taking the time to fill out this feature request! By submitting this issue, you agree to follow our [Code of Conduct](https://nebula-labs.atlassian.net/wiki/x/vAA-DQ) + - type: textarea + id: problem + attributes: + label: Problem + description: What's the problem this feature would solve? + validations: + required: true + - type: textarea + id: solution + attributes: + label: Solution + description: Describe your preferred solution to this problem. Include any alternative solutions or features you've considered if applicable. Include screenshots or designs if they would help + validations: + required: true + - type: textarea + id: additional-context + attributes: + label: Additional Context + description: Describe the feature in more detail. You can include related issues, helpful background knowledge, related documentation, or anything else that will help + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/interal_issue_template.yml b/.github/ISSUE_TEMPLATE/interal_issue_template.yml new file mode 100644 index 0000000..911b315 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/interal_issue_template.yml @@ -0,0 +1,28 @@ +name: 🔧 Internal Change +description: Suggest an Internal Change, e.g., documentation, dependencies, a code refactor +labels: ['Task'] +body: + - type: markdown + attributes: + value: Thanks for taking the time to fill out this internal change suggestion! By submitting this issue, you agree to follow our [Code of Conduct](https://nebula-labs.atlassian.net/wiki/x/vAA-DQ) + - type: textarea + id: problem + attributes: + label: Problem + description: What's the problem this change would solve? + validations: + required: true + - type: textarea + id: solution + attributes: + label: Solution + description: Describe your preferred solution to this problem. Include any alternative solutions or features you've considered if applicable. Include screenshots or designs if they would help + validations: + required: true + - type: textarea + id: additional-context + attributes: + label: Additional Context + description: Describe the change in more detail. You can include related issues, helpful background knowledge, related documentation, or anything else that will help + validations: + required: false diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..f7f9dd0 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,25 @@ + + +### Description + + + +### Testing + + + +### AI Disclosure + + + +### Checklist + + + +- [x] Create this PR +- [ ] Evaluate this PR against the [PR checklist](https://github.com/UTDNebula/engineeringSandbox/wiki/How-to-Contribute) +- [ ] Perform final self-review From 18f65c2e2423f73e732326a5c7093e6807a63b72 Mon Sep 17 00:00:00 2001 From: Justin Date: Wed, 19 Aug 2026 13:57:52 -0500 Subject: [PATCH 2/2] Remove PR Checklist --- .github/pull_request_template.md | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index f7f9dd0..af8657d 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -21,5 +21,4 @@ - [x] Create this PR -- [ ] Evaluate this PR against the [PR checklist](https://github.com/UTDNebula/engineeringSandbox/wiki/How-to-Contribute) - [ ] Perform final self-review