You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cugraph-docs/source/dev_resources/contributing.md
+9-11Lines changed: 9 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ There are multiple ways to be involved and contribute to the cuGraph community,
5
5
6
6
*[File an Issue](https://github.com/rapidsai/docs/issues/new)
7
7
*[Implement a New Feature](https://docs.rapids.ai/contributing/code/#your-first-issue)
8
-
*[Work on an Existing Issue](#F)
8
+
*[Work on an Existing Issue](https://github.com/rapidsai/cugraph/issues)
9
9
10
10
If you are ready to contribute, jump right to the [Contribute Code](https://docs.rapids.ai/contributing/issues/) section.
11
11
@@ -69,17 +69,15 @@ If you need more context on a particular issue, please ask.
69
69
## So you want to contribute code
70
70
71
71
**TL;DR General Development Process**
72
-
1. Read the documentation on [building from source](https://docs.rapids.ai/api/cugraph/nightly/installation/source_build/)to learn how to setup, and validate, the development environment
73
-
2.Read the RAPIDS [Code of Conduct](https://docs.rapids.ai/resources/conduct/)
74
-
3.Find or submit an issue to work on (include a comment that you are working issue)
75
-
4.Fork the cuGraph [repo](#fork) and Code (make sure to add unit tests)!
72
+
1. Read the project's README to learn how to setup the development environment
73
+
2.Find an issue to work on. The best way is to look for the <spanclass="label"style="background: #7057ff; color: #ffffff; text-transform: none">good first issue</span> or <spanclass="label"style="background: #008672; color: #ffffff; text-transform: none">help wanted</span> labels
74
+
3.Comment on the issue saying you are going to work on it
75
+
4. Code! Make sure to update unit tests!
76
76
5. All RAPIDS projects are released under the Apache-2.0 license, so also make sure all source files that support comments include a copyright and the Apache-2.0 license text.
77
-
6. When done, and code passes local CI, create your pull request (PR)
78
-
1. Ensure the code matches the [style guide](https://docs.rapids.ai/resources/style/)
79
-
7. Verify that cuGraph CI passes all [status checks](https://help.github.com/articles/about-status-checks/). Fix if needed
77
+
6. When done, [create your pull request]({% link contributing/prs.md %})
78
+
7. Verify that CI passes all [status checks](https://help.github.com/articles/about-status-checks/). Fix if needed
80
79
8. Wait for other developers to review your code and update code as needed
81
-
9. PR will require the proper [tags](https://docs.rapids.ai/resources/label-checker/) be added by someone with repository permission.
82
-
10. Once reviewed and approved, a RAPIDS developer will merge your pull request
80
+
9. Once reviewed and approved, a RAPIDS developer will merge your pull request
83
81
84
82
Remember, if you are unsure about anything, don't hesitate to comment on issues
85
83
and ask for clarifications!
@@ -115,7 +113,7 @@ cuGraph only allows contribution to the current branch and not main or a future
115
113
1. commit your code
116
114
```git push```
117
115
6. From the GitHub web page, open a Pull Request
118
-
1. follow the Pull Request [tagging policy](./PRTAGS.md)
116
+
1. follow the Pull Request in the repository: https://github.com/rapidsai/```<REPONAME>```/pulls
0 commit comments