-
-
Notifications
You must be signed in to change notification settings - Fork 4
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
8 changed files
with
165 additions
and
76 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
This file was deleted.
Oops, something went wrong.
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,74 @@ | ||
name: 🐛 Bug report | ||
description: Create a report to help us improve | ||
labels: bug | ||
assignees: jonnitto | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thank you for taking the time to complete this bug report! | ||
- type: markdown | ||
attributes: | ||
value: Please make sure to provide the information we ask for. This will allow us to help you better. | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of the current behaviour. | ||
placeholder: A bug happened! | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected behaviour | ||
description: A description of what you expect to happen. | ||
placeholder: I expect to see X or Y | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Steps to reproduce | ||
description: Please add a link to a repository with a minimal reproduction. Or describe accurately how we can reproduce/verify the bug. | ||
placeholder: | | ||
Example steps (replace with your own): | ||
1. Clone my repo at https://github.com/<myuser>/example | ||
2. Do x and y | ||
3. You should see the error come up | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: The version of Carbon.Notification you are using. | ||
placeholder: ex. 2.4.0 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: phpinfo | ||
attributes: | ||
label: PHP version | ||
description: | | ||
Please paste the output of running `php -v`. | ||
This will be automatically formatted as a code block, so no need for backticks. | ||
render: shell | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: composerinfo | ||
attributes: | ||
label: Environment | ||
description: | | ||
Please paste the output of running `composer info`. | ||
This will be automatically formatted as a code block, so no need for backticks. | ||
render: shell | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional context | ||
description: Anything else that might be relevant | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
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,46 @@ | ||
name: ✨ Feature request | ||
description: Suggest an idea for this project | ||
labels: enhancement | ||
assignees: jonnitto | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: Thank you for taking the time to suggest a new feature! | ||
- type: markdown | ||
attributes: | ||
value: Please describe the feature in detail. Why would it would be a good addition to Carbon.Notification? | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: What should be improved? | ||
description: Is your feature request related to a problem? Please describe it. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Describe the solution you would like | ||
description: A clear and concise description of what you want to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Possible alternatives | ||
description: Describe any alternatives you have considered. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: extra | ||
attributes: | ||
label: Additional context | ||
description: Add any other relevant information. | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
id: can-work | ||
attributes: | ||
label: Are you willing to work on this? | ||
description: Are you willing to help us add this feature? If you are not sure how, feel free to ask for guidance. | ||
options: | ||
- label: Yes, I would like to help |
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: 🗣️ Ask question | ||
url: https://github.com/CarbonPackages/Carbon.Notification/discussions/category_choices | ||
about: Please ask and answer questions in discussions |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
changelog: | ||
exclude: | ||
labels: | ||
- ignore-for-releasenotes | ||
categories: | ||
- title: 💥 Breaking changes | ||
labels: | ||
- breaking | ||
- title: ✨ Exciting new features | ||
labels: | ||
- enhancement | ||
- title: 🐛 Found and fixed bugs | ||
labels: | ||
- bug | ||
- title: 📝 Added documentation | ||
labels: | ||
- documentation | ||
- title: 🩹 Other changes | ||
labels: | ||
- '*' |