-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Description Adding a basic issue template, and redirecting people to the forum for questions about dfx use and to discussions for feature requests. First step of [SDK-743](https://dfinity.atlassian.net/browse/SDK-743) # How Has This Been Tested? Can't be tested AFAIK # Checklist: - [x] The title of this PR complies with [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). - [ ] I have edited the CHANGELOG accordingly. - [ ] I have made corresponding changes to the documentation.
- Loading branch information
Showing
2 changed files
with
47 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,39 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a bug report for dfx. | ||
labels: needs-triage | ||
--- | ||
<!-- | ||
Thank you for filing a bug report! 🐛 Please provide a short summary of the bug, | ||
along with any information you feel relevant to replicating the bug. | ||
--> | ||
|
||
I tried the following: | ||
|
||
1. <step 1> | ||
2. <step 2> | ||
|
||
I expected to see this happen: *explanation* | ||
|
||
Instead, this happened: *explanation* | ||
|
||
### Meta | ||
|
||
`dfx --version`: | ||
``` | ||
<version> | ||
``` | ||
|
||
<!-- | ||
If possible, please add log output using the --verbose flag. | ||
This will make debugging a lot easier. | ||
--> | ||
<details><summary>Further log output</summary> | ||
<p> | ||
|
||
``` | ||
<log output> | ||
``` | ||
|
||
</p> | ||
</details> |
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,8 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Question about dfx use | ||
url: https://forum.dfinity.org/ | ||
about: Please ask and answer questions about how to use dfx in the developer forum. | ||
- name: Feature Request | ||
url: https://github.com/dfinity/sdk/discussions | ||
about: Please create and upvote feature requests in Discussions |