forked from JimBobSquarePants/ImageProcessor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt to make issue handling easier.
- Loading branch information
1 parent
2b02e69
commit b32ae0c
Showing
3 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,31 @@ | ||
# How to contribute to ImageProcessor | ||
|
||
#### **Did you find a bug?** | ||
|
||
- Please **ensure the bug was not already reported** by searching on GitHub under [Issues](https://github.com/JimBobSquarePants/ImageProcessor/issues). | ||
|
||
- If you're unable to find an open issue addressing the problem, please [open a new one](https://github.com/JimBobSquarePants/ImageProcessor/issues/new). Be sure to include a **title, the applicable version, a clear description**, as much relevant information as possible, and a **code sample** or an **executable test case** demonstrating the expected behavior that is not occurring. Please do not hijack existing issues. | ||
|
||
#### **Did you write a patch that fixes a bug?** | ||
|
||
* Open a new GitHub pull request with the patch. | ||
|
||
* Ensure the PR description clearly describes the problem and solution. Include the relevant issue number if applicable. | ||
|
||
* Before submitting, please ensure that your code matches the existing coding patterns and practise as demonstrated in the repository. These follow strict Stylecop rules :cop:. | ||
|
||
#### **Do you intend to add a new feature or change an existing one?** | ||
|
||
* Suggest your change in the [ImageProcessor Gitter Chat Room](https://gitter.im/JimBobSquarePants/ImageProcessor) and start writing code. | ||
|
||
* Do not open an issue on GitHub until you have collected positive feedback about the change. GitHub issues are primarily intended for bug reports and fixes. | ||
|
||
#### **Do you have questions about consuming the library or the source code?** | ||
|
||
* Ask any question about how to use ImageSharp in the [ImageProcessor Gitter Chat Room](https://gitter.im/JimBobSquarePants/ImageProcessor). | ||
|
||
And please remember. ImageProcessor is the work of a very, very, small number of developers who struggle balancing time to contribute to the project with family time and work commitments. We encourage you to pitch in and help make our vision of simple accessible imageprocessing available to all. Open Source can only exist with your help. | ||
|
||
Thanks for reading! | ||
|
||
James Jackson-South :heart: |
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 @@ | ||
### Prerequisites | ||
|
||
- [ ] I have written a descriptive issue title | ||
- [ ] I have verified that I am running the latest version of Nancy | ||
- [ ] I have verified if the problem exist in both `DEBUG` and `RELEASE` mode | ||
- [ ] I have searched [open](https://github.com/JimBobSquarePants/ImageProcessor/issuess) and [closed](https://github.com/JimBobSquarePants/ImageProcessor/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported | ||
|
||
### Description | ||
<!-- A description of the bug or feature --> | ||
|
||
### Steps to Reproduce | ||
<!-- List of steps, sample code, failing test or link to a project that reproduces the behavior --> | ||
|
||
### System Configuration | ||
<!-- Tell us about the environment where you are experiencing the bug --> | ||
|
||
- ImageProcessor version: | ||
- ImageProcessor.Web version (if applicable) | ||
- Other ImageProcessor packages and versions: | ||
- Environment (Operating system, version and so on): | ||
- .NET Framework version: | ||
- Additional information: | ||
|
||
<!-- Thanks for reporting the issue to ImageProcessor! --> |
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,11 @@ | ||
### Prerequisites | ||
|
||
- [ ] I have written a descriptive pull-request title | ||
- [ ] I have verified that there are no overlapping [pull-requests](https://github.com/JimBobSquarePants/ImageProcessor/pulls) open | ||
- [ ] I have verified that I am following matches the existing coding patterns and practise as demonstrated in the repository. These follow strict Stylecop rules :cop:. | ||
- [ ] I have provided test coverage for my change (where applicable) | ||
|
||
### Description | ||
<!-- A description of the changes proposed in the pull-request --> | ||
|
||
<!-- Thanks for contributing to ImageProcessor! --> |