-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
) * [GH-15608] - Replace Jira links with GH issue equivalent * [GH-15608] Replace Jira links with GH issue equivalent [nocheck] * Fix bindings * Address Wendy's comment. * Fix typo * Change tests * exclude demos * Update flow items
- Loading branch information
Showing
104 changed files
with
252 additions
and
251 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 |
---|---|---|
|
@@ -26,47 +26,14 @@ If you're an Open Source community member you should send these to one of: | |
|
||
### How to File Bugs and Feature Requests | ||
|
||
You can file a bug report or feature request directly in the H2O-3 JIRA tracking system at [https://0xdata.atlassian.net/projects/PUBDEV](https://0xdata.atlassian.net/projects/PUBDEV). Anyone can create a JIRA ticket as long as you create a JIRA account using your email address. | ||
You can file a bug report or feature request directly on the [GitHub issues](https://github.com/h2oai/h2o-3/issues) page. | ||
|
||
Log in to the [H2O JIRA tracking system](https://0xdata.atlassian.net/projects/PUBDEV). (Create an account if necessary.) | ||
Once inside the Github issues page, click the **New issue** button. | ||
|
||
Once inside the home page, click the **Create** button. | ||
|
||
![create](h2o-docs/src/product/images/jira_create.png) | ||
![create](h2o-docs/src/product/images/issue_create.png) | ||
|
||
A form will display allowing you to enter information about the bug or feature request. | ||
|
||
![new issue](h2o-docs/src/product/images/jira_new_issue.png) | ||
|
||
* Select the Project that you want to file the issue under. For example, if this is an open source public bug, you should file it under **Public H2O 3 (PUBDEV)**. | ||
* Specify the Issue Type. For example, if you believe you've found a bug, then select **Bug**, or if you want to request a new feature, then select **New Feature**. | ||
* Provide a short but concise summar about the issue. The summary will be shown when engineers organize, filter, and search for Jira tickets. | ||
* Specify the urgency of the issue using the Priority dropdown menu. | ||
* If there is a due date specify it with the Due Date. | ||
* The Components drop down refers to the API or language that the issue relates to. (See the drop down menu for available options.) | ||
* You can leave Affects Version/s, Fix Version\s, and Assignee fields blank. Our engineering team will fill this in. | ||
* Add a detailed description of your bug in the Description section. Best practice for descriptions include: | ||
|
||
* A summary of what the issue is | ||
* What you think is causing the issue | ||
* Reproducible code that can be run end to end without requiring an engineer to edit your code. Use {code} {code} around your code to make it appear in code format. | ||
* Any scripts or necessary documents. Add by dragging and dropping your files into the create issue dialogue box. | ||
|
||
You can leave the rest of the ticket blank. When you are done with your ticket, simply click on the **Create** button at the bottom of the page. | ||
|
||
![new issue](h2o-docs/src/product/images/jira_finished_create.png) | ||
|
||
After you click **Create**, a pop up will appear on the right side of your screen with a link to your Jira ticket. It will have the form https://0xdata.atlassian.net/browse/PUBDEV-####. You can use this link to later edit your ticket. | ||
|
||
Please note that your Jira ticket number along with its summary will appear in one of the Jira ticket slack channels, and anytime you update the ticket anyone associated with that ticket, whether as the assignee or a watcher will receive an email with your changes. | ||
|
||
### How to Vote for or Comment on JIRA Issues | ||
|
||
You can also vote for or comment on existing bugs and feature requests that are already in the H2O-3 JIRA. To vote for a JIRA issue, log in the the H2O JIRA tracking system (create an account if necessary), find or create the issue that you want to vote for, then click the **Vote for this issue** link (upper right portion of the issue). Voting can help H2O prioritize the features that are included in each release. | ||
|
||
>***Note***: JIRA issues for customers with Enterprise Support contracts go into a private project so that customer information is kept secure. Contact [email protected] for more information. | ||
|
||
## Help and Documentation | ||
|
||
You can help others directly and help improve the resources that others read to learn and use H2O by contributing to the formal documentation or the forums. | ||
|
@@ -115,12 +82,12 @@ For Scala tests see the Sparkling Water GitHub repo. | |
|
||
You can contribute R, Python, Java or Scala code for H2O, either for bug fixes or new features. If you have your own idea about what to work on a good place to begin is to discuss it with us on [Gitter](https://gitter.im/h2oai/h2o-3) so that we can help point you in the right direction. | ||
|
||
For ideas about what to work on see the H2O-3 [JIRA ticket system](https://0xdata.atlassian.net/projects/PUBDEV). | ||
For ideas about what to work on see the H2O-3 [Github issues](https://github.com/h2oai/h2o-3/issues). | ||
|
||
To contribute code, fork the H2O-3 GitHub repo, create a branch for your work and when you're done, create a pull request. Once a PR has been created, it will trigger the H2O-3 Jenkins test system and should start automatically running tests (this will show up in the comment history on the PR). Make sure all the tests pass. A few notes: | ||
|
||
* If there's not already a JIRA ticket associated with this task, please create one. | ||
* If there is a JIRA ticket associated with your changes, choose a branch name that includes that JIRA number. e.g. `PUBDEV-1234_new_pca` | ||
* If there's not already a GitHub issue associated with this task, please create one. | ||
* If there is a GitHub issue associated with your changes, choose a branch name that includes that number. e.g. `gh-1234_new_pca` | ||
* New code must come with unit tests. Here are some examples of [runits](https://github.com/h2oai/h2o-3/tree/master/h2o-r/tests), [pyunits](https://github.com/h2oai/h2o-3/tree/master/h2o-py/tests) and [junits](https://github.com/h2oai/h2o-3/tree/master/h2o-algos/src/test/java/hex) to help get you started. | ||
* Use the JIRA number in the PR title. e.g. "PUBDEV-1234: Added new `pca_method` option in the PCA algorithm". | ||
* Write a summary of all changes & additions to the code in the PR description and add a link to the JIRA. | ||
* Use the GitHub number in the PR title. e.g. "GH-1234: Added new `pca_method` option in the PCA algorithm". | ||
* Write a summary of all changes & additions to the code in the PR description and add a link to the GitHub issue. |
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
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 |
---|---|---|
|
@@ -98,11 +98,10 @@ publishing { | |
connection 'scm:git:https://github.com/h2oai/h2o-dev.git' | ||
developerConnection 'scm:git:[email protected]:h2oai/h2o-dev.git' | ||
} | ||
|
||
// Public H2O JIRA for issue management | ||
|
||
issueManagement { | ||
system 'Jira' | ||
url 'http://jira.h2o.ai' | ||
system 'GitHub issues' | ||
url 'https://github.com/h2oai/h2o-3/issues' | ||
} | ||
// Developer information | ||
developers { | ||
|
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
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
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
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
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
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
Oops, something went wrong.