-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add issue templates and update contributor docs
- Loading branch information
Showing
5 changed files
with
156 additions
and
23 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,45 @@ | ||
name: Bug Report | ||
description: Create a report to help us improve | ||
labels: ["C-bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thanks for filing a 🐛 bug report 😄! | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Problem | ||
description: > | ||
Please provide a clear and concise description of what the bug is, | ||
including what currently happens and what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps | ||
description: Please list the steps to reproduce the bug. | ||
placeholder: | | ||
1. | ||
2. | ||
3. | ||
- type: textarea | ||
id: possible-solutions | ||
attributes: | ||
label: Possible Solution(s) | ||
description: > | ||
Not obligatory, but suggest a fix/reason for the bug, | ||
or ideas how to implement the addition or change. | ||
- type: textarea | ||
id: notes | ||
attributes: | ||
label: Notes | ||
description: Provide any additional notes that might be helpful. | ||
- type: textarea | ||
id: version | ||
attributes: | ||
label: Version | ||
description: > | ||
Please paste the output of running `mdbook version` or which version | ||
of the library you are using. | ||
render: text |
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,28 @@ | ||
name: Enhancement | ||
description: Suggest an idea for enhancing mdBook | ||
labels: ["C-enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for filing a 🙋 feature request 😄! | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Problem | ||
description: > | ||
Please provide a clear description of your use case and the problem | ||
this feature request is trying to solve. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Proposed Solution | ||
description: > | ||
Please provide a clear and concise description of what you want to happen. | ||
- type: textarea | ||
id: notes | ||
attributes: | ||
label: Notes | ||
description: Provide any additional context or information that might be helpful. |
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,24 @@ | ||
name: Question | ||
description: Have a question on how to use mdBook? | ||
labels: ["C-question"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Got a question on how to do something with mdBook? | ||
- type: textarea | ||
id: question | ||
attributes: | ||
label: Question | ||
description: > | ||
Enter your question here. Please try to provide as much detail as possible. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: version | ||
attributes: | ||
label: Version | ||
description: > | ||
Please paste the output of running `mdbook version` or which version | ||
of the library you are using. | ||
render: text |
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
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,12 +1,23 @@ | ||
# This will allow users to self assign, and/or drop assignment | ||
[assign] | ||
|
||
# Allows @rustbot ready, review, author, or blocked | ||
[shortcut] | ||
|
||
[relabel] | ||
allow-unauthenticated = [ | ||
# For Issue areas | ||
# For Issue areas | ||
"A-*", | ||
"E-Help-Wanted", | ||
"Bug", | ||
"Feature-Request" | ||
] | ||
# Categories | ||
"C-*", | ||
# Commands | ||
"Command-*", | ||
# Status | ||
"S-*", | ||
"regression", | ||
"Breaking Change", | ||
"msrv-bump", | ||
] | ||
|
||
[autolabel."S-waiting-on-review"] | ||
new_pr = true |