-
Notifications
You must be signed in to change notification settings - Fork 124
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
2 changed files
with
66 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,57 @@ | ||
name: 🐛 Bug Report | ||
description: Create a report to help us make the documentation better. | ||
labels: ['bug', 'triage'] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: expected-behaviour | ||
attributes: | ||
label: Expected Behavior | ||
description: what did you expect to happen? | ||
placeholder: Tell us what you expected! | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actual-behaviour | ||
attributes: | ||
label: Actual Behavior | ||
description: what did you actually happened? | ||
placeholder: Tell us what you see! | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reprod | ||
attributes: | ||
label: 'Reproduction steps' | ||
description: Please enter an explicit description of your issue | ||
value: | | ||
1. Go to … | ||
2. Click on … | ||
3. Scroll down to … | ||
4. See error | ||
render: bash | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: What version of our documenation are you running? | ||
placeholder: Enter the documenation version | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: What browsers are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- Chrome | ||
- Safari (iOS) | ||
- Safari (macOS) | ||
- Firefox | ||
- Microsoft Edge |
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,9 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: 💡 Feature Request | ||
url: https://github.com/hyperledger/besu-docs/discussions/new?category=ideas | ||
about: Propose new ideas and enhancements for this project. | ||
- name: ❓ Ask a Question | ||
url: https://github.com/hyperledger/besu-docs/discussions/new?category=q-a | ||
about: Initiate discussions or seek advice from the community. | ||
|