-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
143 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
--- | ||
name: Found a bug? | ||
description: Fill in this form to report it, and help us improve | ||
title: '[Bug]: ' | ||
labels: type:bug report | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: '## Reporting a bug' | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for helping us make node-dashboard better, by reporting a bug you have found. This issue may already be reported! Please join our [discord](https://discord.iota.org/) for help. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Issue description | ||
description: Briefly describe the issue. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected_behaviour | ||
attributes: | ||
label: Expected behaviour | ||
description: A concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: actual_behaviour | ||
attributes: | ||
label: Actual behaviour | ||
description: A concise description of what actually happened. | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: can_repro | ||
attributes: | ||
label: Can the issue reliably be reproduced? | ||
options: | ||
- 'Yes' | ||
- 'No' | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: repro_steps | ||
attributes: | ||
label: Steps to reproduce the issue | ||
description: Explain how the maintainer can reproduce the issue. | ||
placeholder: | | ||
1. | ||
2. | ||
3. | ||
... | ||
- type: textarea | ||
id: errors | ||
attributes: | ||
label: Errors | ||
description: Paste any errors (or screenshots). | ||
render: shell | ||
|
||
- type: checkboxes | ||
id: duplicate_declaration | ||
attributes: | ||
label: Duplicate declaration | ||
description: Please confirm that you are not creating a duplicate issue. | ||
options: | ||
- label: I have searched the issues tracker for this issue and there is none | ||
required: true | ||
|
||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/iotaledger/node-dashboard/blob/main/.github/CODE_OF_CONDUCT.md). | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Request a feature | ||
url: https://github.com/iotaledger/node-dashboard/discussions/categories/features-enhancements | ||
about: Propose a feature or enhancement in GitHub discussions | ||
- name: Security vulnerabilities | ||
url: [email protected] | ||
about: Please report security vulnerabilities here. | ||
- name: General feedback | ||
url: https://github.com/iotaledger/node-dashboard/discussions/categories/feedback | ||
about: Leave us some feedback | ||
- name: Discord | ||
url: https://discord.iota.org/ | ||
about: Please ask and answer questions here. | ||
- name: Security vulnerabilities | ||
url: [email protected] | ||
about: Please report security vulnerabilities here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
name: New task | ||
description: Create a new work task | ||
title: '[Task]: ' | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: '## Creating a task' | ||
- type: markdown | ||
attributes: | ||
value: | | ||
This form should be used by official maintainers only to create new work tasks. Most tasks should be assigned to a milestone and the task management project. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Task description | ||
description: Describe the task that needs to be completed. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: requirements | ||
attributes: | ||
label: Requirements | ||
description: What are the requirements for this task, this could be a checklist of subtasks. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: acceptance_criteria | ||
attributes: | ||
label: Acceptance criteria | ||
description: What is the criteria for this task to be marked as done? This will help anyone approving any PRs related to this task. | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
id: checklist | ||
attributes: | ||
label: Creation checklist | ||
description: 'Before submitting this task please ensure you have done the following if necessary:' | ||
options: | ||
- label: I have assigned this task to the correct people | ||
required: false | ||
- label: I have added the most appropriate labels | ||
required: false | ||
- label: I have linked the correct milestone and/or project | ||
required: false |
This file was deleted.
Oops, something went wrong.