-
Notifications
You must be signed in to change notification settings - Fork 8
Added multiple Issue-templates to repo #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,64 +1,46 @@ | ||
name: 🐛 Bug Report | ||
description: Report a reproducible bug | ||
labels: ["bug"] | ||
projects: ["soujava/3"] | ||
name: Bug report 🐞 | ||
description: File a bug report | ||
title: "[Bug] " | ||
labels: bug | ||
body: | ||
- type: markdown | ||
- type: checkboxes | ||
id: existing-issue | ||
attributes: | ||
value: | | ||
Please provide all the information requested. Issues that do not follow this format are likely to stall. | ||
Please test using the latest POM Editor Maven Plugin release to make sure your issue has not already been fixed: https://github.com/soujava/pom-editor-maven-plugin/releases | ||
label: Is there an existing issue for this? | ||
description: Please search to see if an issue already exists for the bug you encountered. | ||
options: | ||
- label: I have searched the existing issues | ||
required: true | ||
- type: textarea | ||
id: description | ||
id: what-happened | ||
attributes: | ||
label: Description | ||
description: | | ||
Please provide a clear and concise description of what the bug is. | ||
Include screenshots if needed. | ||
label: Describe the bug | ||
description: A concise description of what you are experiencing. | ||
placeholder: Tell us what you see! | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: evidences | ||
id: expected-behaviour | ||
attributes: | ||
label: Evidences | ||
description: | | ||
Please, provide a link to a repository on GitHub, or provide a minimal code example that reproduces the problem. | ||
You may provide a screenshot of the application if you think it is relevant to your bug report. | ||
Here are some tips for providing a minimal example: https://stackoverflow.com/help/mcve | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: steps-to-produce | ||
Brijeshthummar02 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
id: screenshots | ||
attributes: | ||
label: Steps To Reproduce | ||
description: | | ||
Please, provide a detailed list of steps that reproduce the issue. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected-results | ||
attributes: | ||
label: Expected Results | ||
description: | | ||
Describe what you expected to happen. | ||
validations: | ||
required: false | ||
|
||
label: Add Screenshots | ||
description: Add sufficient screenshots to explain your issue. | ||
- type: textarea | ||
id: solution-ideas | ||
id: environment-configuration | ||
attributes: | ||
label: Any idea for solving this issue? | ||
description: | | ||
Please, share with us your ideas for solving this issue if you have any. | ||
validations: | ||
required: false | ||
|
||
- type: markdown | ||
label: Environment and Configuration | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
value: | | ||
### Code of Conduct | ||
By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/soujava/pom-editor-maven-plugin/blob/main/CODE_OF_CONDUCT.adoc) | ||
label: Record | ||
options: | ||
- label: "I have read the Contributing Guidelines" | ||
required: true | ||
- label: "I have starred the repository" | ||
required: true |
This file contains hidden or 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,58 @@ | ||
name: Documentation Update 📝 | ||
description: Improve Documentation | ||
title: "[Documentation Update]: " | ||
labels: 'documentation' | ||
body: | ||
- type: checkboxes | ||
id: existing-issue | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: Please search to see if an issue already exists for the updates you want to make. | ||
options: | ||
Brijeshthummar02 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
- label: I have searched the existing issues | ||
required: false # Made optional so users can submit without prior issue check | ||
- type: textarea | ||
id: issue-description | ||
attributes: | ||
label: Issue Description | ||
description: Please provide a clear description of the documentation update you are suggesting. | ||
placeholder: Describe the improvement or correction you'd like to see in the documentation. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: suggested-change | ||
attributes: | ||
label: Suggested Change | ||
description: Provide details of the proposed change to the documentation. | ||
placeholder: Explain how the documentation should be updated or corrected. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: rationale | ||
attributes: | ||
label: Rationale | ||
description: Why is this documentation update necessary or beneficial? | ||
placeholder: Explain the importance or reasoning behind the suggested change. | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: urgency | ||
attributes: | ||
label: Urgency | ||
description: How urgently do you believe this documentation update is needed? | ||
options: | ||
- High | ||
- Medium | ||
- Low | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Record | ||
options: | ||
- label: "I have read the Contributing Guidelines" | ||
required: true | ||
- label: "I have starred the repository" | ||
required: false # Made optional so users are not forced to star the repo |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,61 @@ | ||
name: Feature Request ✨ | ||
description: Suggest a feature | ||
title: "[Feature Request] " | ||
labels: enhancement | ||
body: | ||
- type: checkboxes | ||
id: existing-issue | ||
attributes: | ||
label: Is there an existing issue for this? | ||
description: Please search to see if an issue already exists for this feature. | ||
options: | ||
Brijeshthummar02 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
- label: I have searched the existing issues | ||
required: false # Changed from true to false, making this optional | ||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: Feature Description | ||
description: Please provide a detailed description of the feature you are requesting. | ||
placeholder: Describe the new feature or enhancement you'd like to see. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: use-case | ||
attributes: | ||
label: Use Case | ||
description: How would this feature enhance your use of the project? | ||
placeholder: Describe a specific use case or scenario where this feature would be beneficial. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: benefits | ||
attributes: | ||
label: Benefits | ||
description: What benefits would this feature bring to the project or community? | ||
placeholder: Explain the advantages of implementing this feature. | ||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Add Screenshots | ||
description: If any... | ||
- type: dropdown | ||
id: priority | ||
attributes: | ||
label: Priority | ||
description: How important is this feature to you? | ||
options: | ||
- High | ||
- Medium | ||
- Low | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Record | ||
options: | ||
- label: "I have read the Contributing Guidelines" | ||
required: true | ||
- label: "I have starred the repository" | ||
required: false # Changed from true to false, making this optional |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,25 @@ | ||
name: Other | ||
description: Use this for any other issues. Please do NOT create blank issues | ||
title: '[OTHER] write a small description here' | ||
body: | ||
- type: textarea | ||
id: issuedescription | ||
attributes: | ||
label: What would you like to share? | ||
description: Provide a clear and concise explanation of your issue. | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
id: no-duplicate-issues | ||
attributes: | ||
label: 'Checklist 🚀' | ||
options: | ||
- label: "I checked and didn't find a similar issue" | ||
required: true | ||
|
||
- label: 'I have read the Contributing Guidelines' | ||
required: true | ||
|
||
- label: 'I am willing to work on this issue (blank for no).' | ||
required: false |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.