Skip to content
Open
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
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report_issue_template.yml
Original file line number Diff line number Diff line change
@@ -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
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -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
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request_issue_template.yml
Original file line number Diff line number Diff line change
@@ -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
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/interal_issue_template.yml
Original file line number Diff line number Diff line change
@@ -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
24 changes: 24 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!--
Thank you for taking the time to contribute!
We don't expect perfection and appreciate anything you can do to help.
Please fill out each section below
-->

### Description

<!-- Include related issues or PRs (e.g., "Resolves #123") -->

### Testing

<!-- How have you tested the changes in this PR? How can we test it? -->

### AI Disclosure

<!-- In general, how did you use AI to help you? (see our AI policy at https://nebula-labs.atlassian.net/wiki/x/AgCwQw) -->

### Checklist

<!-- Please check off that you've completed each item below -->

- [x] Create this PR
- [ ] Perform final self-review
Loading