Skip to content

Commit da023b1

Browse files
authored
Merge pull request #35 from shauheen/update_contribution
Update contribution guide and issue/PR templates
2 parents cde0d7d + cfcb6cb commit da023b1

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed

CONTRIBUTING.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
# Welcome!
2+
3+
If you are here, it means you are interested in helping us out. A hearty welcome and thank you! There are many ways you can contribute to the ML.NET project:
4+
5+
* Offer PR's to fix bugs or implement new features.
6+
* Give us feedback and bug reports regarding the software or the documentation.
7+
* Improve our examples, tutorials, and documentation.
8+
9+
## Getting started:
10+
11+
Please join the community on [gitter](https://gitter.im/dotnet). Also please make sure to take a look at the project [roadmap](ROADMAP.md).
12+
13+
### Pull requests
14+
15+
If you are new to GitHub [here](https://help.github.com/categories/collaborating-with-issues-and-pull-requests/) is a detailed help source on getting involved with development on GitHub.
16+
17+
As a first time contributor, you will be invited to sign the Contributor License Agreement (CLA). Please follow the instructions of the dotnet foundation bot reviewer on your PR to sign the agreement indicating that you have appropriate rights to your contribution.
18+
19+
Your pull request needs to reference a filed issue. Please fill in the template that is populated for the pull request. Only pull requests adressing small typos can have no issues associated with them.
20+
21+
An ML.NET team member will be assigned to your pull request once the continuous integration checks have passed successfully.
22+
23+
All commits in a pull request will be squashed to a single commit with the original creator as author.
24+
125
# Contributing
226

327
See [Contributing](Documentation/project-docs/contributing.md) for information about coding styles, source structure, making pull requests, and more.

ISSUE_TEMPLATE.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
### System information
2+
3+
- **OS version/distro**:
4+
- **.NET Version (eg., dotnet --info)**:
5+
6+
### Issue
7+
8+
- **What did you do?**
9+
- **What happened?**
10+
- **What did you expect?**
11+
12+
### Source code / logs
13+
14+
Please paste or attach the code or logs or traces that would be helpful to diagnose the issue you are reporting.

PULL_REQUEST_TEMPLATE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
We are excited to review your PR.
2+
3+
So we can do the best job, please check:
4+
5+
- [ ] There's a descriptive title that will make sense to other developers some time from now.
6+
- [ ] There's associated issues. All PR's should have issue(s) associated - unless a trivial self-evident change such as fixing a typo. You can use the format `Fixes #nnnn` in your description to cause GitHub to automatically close the issue(s) when your PR is merged.
7+
- [ ] Your change description explains what the change does, why you chose your approach, and anything else that reviewers should know.
8+
- [ ] You have included any necessary tests in the same PR.
9+

0 commit comments

Comments
 (0)