forked from cloudwego/kitex
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
30dd493
commit d350e23
Showing
1 changed file
with
7 additions
and
7 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 |
---|---|---|
|
@@ -34,7 +34,7 @@ This Code of Conduct applies within all project spaces, and it also applies when | |
|
||
### Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. | ||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. | ||
|
||
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project’s leadership. | ||
|
||
|
@@ -56,24 +56,24 @@ We use [git-flow](https://nvie.com/posts/a-successful-git-branching-model/) as o | |
|
||
## Bugs | ||
### 1. How to Find Known Issues | ||
We are using [Github Issues](https://github.com/bytedance/gopkg/issues) for our public bugs. We keep a close eye on this and try to make it clear when we have an internal fix in progress. Before filing a new task, try to make sure your problem doesn’t already exist. | ||
We are using [Github Issues](https://github.com/cloudwego/kitex/issues) for our public bugs. We keep a close eye on this and try to make it clear when we have an internal fix in progress. Before filing a new task, try to make sure your problem doesn’t already exist. | ||
|
||
### 2. Reporting New Issues | ||
Providing a reduced test code is a recommended way for reporting issues. Then can placed in: | ||
- Just in issues | ||
- [Golang Playground](https://play.golang.org/) | ||
|
||
### 3. Security Bugs | ||
Please do not report the safe disclosure of bugs to public issues. Contact us by [Support Email](mailto:[email protected]) | ||
Please do not report the safe disclosure of bugs to public issues. Contact us by [Support Email](mailto:[email protected]) | ||
|
||
## How to Get in Touch | ||
- [Email](mailto:[email protected]) | ||
- [Email](mailto:[email protected]) | ||
|
||
## Submit a Pull Request | ||
Before you submit your Pull Request (PR) consider the following guidelines: | ||
1. Search [GitHub](https://github.com/bytedance/gopkg/pulls) for an open or closed PR that relates to your submission. You don't want to duplicate existing efforts. | ||
1. Search [GitHub](https://github.com/cloudwego/kitex/pulls) for an open or closed PR that relates to your submission. You don't want to duplicate existing efforts. | ||
2. Be sure that an issue describes the problem you're fixing, or documents the design for the feature you'd like to add. Discussing the design upfront helps to ensure that we're ready to accept your work. | ||
3. [Fork](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo) the bytedance/gopkg repo. | ||
3. [Fork](https://docs.github.com/en/github/getting-started-with-github/fork-a-repo) the cloudwego/kitex repo. | ||
4. In your forked repository, make your changes in a new git branch: | ||
``` | ||
git checkout -b my-fix-branch develop | ||
|
@@ -86,7 +86,7 @@ Before you submit your Pull Request (PR) consider the following guidelines: | |
``` | ||
git push origin my-fix-branch | ||
``` | ||
9. In GitHub, send a pull request to `gopkg:develop` | ||
9. In GitHub, send a pull request to `kitex:develop` | ||
## Contribution Prerequisites | ||
- Our development environment keeps up with [Go Official](https://golang.org/project/). | ||
|