forked from storyprotocol/protocol-core
-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: issue templates * feat: issue template modifications
- Loading branch information
Showing
5 changed files
with
102 additions
and
0 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,32 @@ | ||
--- | ||
name: Bug report | ||
about: Submit a bug ticket if you have an issue. If you're a user, check out the Story Protocol Discord server for faster assistance. | ||
title: '' | ||
labels: 'bug' | ||
assignees: '' | ||
--- | ||
<!--- Fill out the fields if you're an integrator or contributor. --> | ||
|
||
## Description and context | ||
<!--- Provide a detailed description of the problem to expedite the process. --> | ||
|
||
|
||
## Steps to reproduce | ||
<!--- Describe what happened step by step. --> | ||
<!--- If applicable, provide a link to a live example or include code to reproduce. --> | ||
|
||
1. | ||
2. | ||
3. | ||
|
||
## Experienced behavior | ||
<!--- Describe what happened after the last step. --> | ||
|
||
|
||
## Expected behavior | ||
<!--- Describe what was expected to happen instead. --> | ||
|
||
|
||
## Solution recommendation | ||
<!--- Not mandatory, but feel free to recommend a way fix the issue. --> | ||
|
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,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Story Protocol Official Discord | ||
url: https://discord.gg/storyprotocol | ||
about: If you're a user, this is the fastest way to get help. Do not give your wallet private key or mnemonic words to anyone. |
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,20 @@ | ||
--- | ||
name: Feature Request | ||
about: Create a feature request item to be picked up by a contributor. | ||
title: '' | ||
labels: 'enhancement' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Description and context | ||
<!--- Write a description or todo list as the scope. A task should be: --> | ||
<!--- Actionable: can be acted on right away. --> | ||
<!--- Clearly defined scope: has precise limits/boundaries. --> | ||
<!--- Small scope: break complex tasks into smaller ones if they involve multiple system parts, multiple people/PRs, or parallelizable work. --> | ||
|
||
## Suggested solution | ||
<!--- Optionally write a description of suggested solution for this feature request --> | ||
|
||
## Definition of done | ||
<!--- Describe completion: e.g. code merged, deployment is done, or release published etc. --> |
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,20 @@ | ||
--- | ||
name: Task | ||
about: Create a regular work item to be picked up by a contributor. | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Description and context | ||
<!--- Write a description or todo list as the scope. A task should be: --> | ||
<!--- Actionable: can be acted on right away. --> | ||
<!--- Clearly defined scope: has precise limits/boundaries. --> | ||
<!--- Small scope: break complex tasks into smaller ones if they involve multiple system parts, multiple people/PRs, or parallelizable work. --> | ||
|
||
## Suggested solution | ||
<!--- Optionally write a description of suggested solution for this feature request --> | ||
|
||
## Definition of done | ||
<!--- Describe completion: e.g. code merged, deployment is done, or release published etc. --> |
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,25 @@ | ||
--- | ||
name: Tracking issue | ||
about: Tracking issues are task lists used to better organize regular work items. | ||
title: 'Tracking issue for *ADD_PROJECT* - *ADD_COMPONENT*' | ||
labels: 'epic' | ||
assignees: '' | ||
|
||
--- | ||
|
||
This issue is for grouping *ADD_COMPONENT* related tasks that are necessary for *ADD_PROJECT*. | ||
|
||
### Other tracking issues for the same project: | ||
<!--- Link related tracking issues within the project for easier navigation. --> | ||
<!--- Assign tasks to the appropriate tracking issue if there is more than one. --> | ||
|
||
- #XXXX | ||
- #XXXX | ||
- #XXXX | ||
|
||
<!--- Subtasks MUST be inside the ``` -> ``` code block. --> | ||
```[tasklist] | ||
### Task list | ||
- [ ] XXXX | ||
- [ ] XXXX | ||
``` |