forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added barebones issue-reporting template in ISSUES.md (MystenLabs#972)
- Loading branch information
1 parent
86501f4
commit af30a74
Showing
1 changed file
with
32 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 @@ | ||
# Template for Reporting Issues | ||
|
||
Use the following template to report issues in the Sui GitHub repo: | ||
|
||
``` | ||
## Steps to Reproduce Issue | ||
Fill this in with the concrete steps needed to reproduce the bug. When providing code in the reproduction steps, use the smallest snippet of code that demonstrates the issue, removing any extraneous details. | ||
e.g. | ||
1. Call function <function call>. | ||
2. Use return value and call <other function call>. | ||
## Expected Result | ||
Specify what outcome you expected should have resulted, but didn't. | ||
e.g. | ||
Expected <other function call> to return 42. | ||
## Actual Result | ||
Specify what the actual unexpected outcome was. | ||
e.g. | ||
<other function call> returned 41. | ||
## System Information | ||
* OS: <specify OS version> | ||
* Compiler: <specify compiler version> | ||
``` |