Skip to content

Commit 1aa2458

Browse files
committed
Add contribution guidelines, issue template and PR template
1 parent 8bf8e2c commit 1aa2458

3 files changed

Lines changed: 50 additions & 0 deletions

File tree

.github/CONTRIBUTING.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Contributing
2+
Thank you for wanting to help with this project! Pull requests and bug reports are always welcome, there are just some small things you should review before submitting.
3+
4+
## Issues
5+
If you find any issue with the library, feel free to open an issue report. If it's just a small issue you might want to consider just asking on Slack (see below).
6+
7+
## Feature Requests
8+
You may open an issue also to request new features. Make sure you describe what you are missing in the library and add any pointers someone might need to implement it.
9+
10+
## Pull Requests
11+
If you consider submitting a pull request, please note the following:
12+
13+
1. All pull requests **must** be submitted to the `Development` branch. The `master` branch is exclusively mutable by release. PRs against `master` will not be merged.
14+
2. Pleae make sure you follow the projects code style. To make sure you did, you can use `./gradlew checkstyleMain`.
15+
3. The project is licensed under [GNU GPLv3](../LICENSE.txt) thus all code you submit will be subject to this license.
16+
17+
## Contact
18+
If you have any questions regarding the library you can ask those on the `#javaapi` channel on the [Pokemon GO Reverse Engineering Slack](https://pkre.slack.com/). You can [get your invite here](https://shielded-earth-81203.herokuapp.com/).

.github/ISSUE_TEMPLATE.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
**Description:**
2+
[Short description of the issue observed. If this ia feature request you can modify the template as required.]
3+
4+
**Steps to reproduce:**
5+
6+
1. [Step 1]
7+
2. [Step 2]
8+
9+
**Expected behavior:**
10+
[What should happen?]
11+
12+
**Actual behavior:**
13+
[What actually happens]
14+
15+
**Stacktrace (If it's a crash):**
16+
[Please use pastebin if it's too long]
17+
18+
**Version:**
19+
[The version of the lib you used]

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
### Prerequisites (Remove this section if you want)
2+
Make sure you...
3+
4+
* Follow the [contribution guidelines](CONTRIBUTING.md)
5+
* Follow the code style (run `./gradlew checkstyleMain`)
6+
* Submit this PR against the `Development` branch.
7+
8+
**Fixed issue:** [Reference the issue number here, or remove if not a fix]
9+
10+
**Changes made:**
11+
12+
* List your changes here
13+
* Change 2...

0 commit comments

Comments
 (0)