If you don't understand the github open source project contribution process at all, it is strongly recommended to read: first contributions
It is warmly welcomed if you have interest to hack on automq-operator. First, we encourage this kind of willing very much. And here is a list of contributing guide for you.
Every action to make project automq-operator better is encouraged. On GitHub, every improvement for automq-operator be via a PR (short for pull request).
- If you find a typo, try to fix it!
- If you find a bug, try to fix it!
- If you find some redundant codes, try to remove them!
- If you find some test cases missing, try to add them!
- If you could enhance a feature, please DO NOT hesitate!
- If you find code implicit, try to add comments to make it clear!
- If you find code ugly, try to refactor that!
- If you can help to improve documents, it could not be better!
- If you find document incorrect, just do it and fix that!
- ...
Actually it is impossible to list them completely. Just remember one princinple:
WE ARE LOOKING FORWARD TO ANY PR FROM YOU.
Since you are ready to improve automq-operator with a PR, we suggest you could take a look at the PR rules here.
- Workspace Preparation
- Branch Definition
- Commit Rules
- PR Description
- Developing Environment
- Docs Contribution
To put forward a PR, we assume you have registered a GitHub ID. Then you could finish the preparation in the following steps:
-
FORK automq-operator to your repository. To make this work, you just need to click the button Fork in right-left of cuisongliu/automq-operator main page. Then you will end up with your repository in
https://github.com/<your-username>/automq-operator
, in whichyour-username
is your GitHub username. -
CLONE your own repository to master locally. Use
git clone https://github.com/<your-username>/automq-operator.git
to clone repository to your local machine. Then you can create new branches to finish the change you wish to make. -
Set Remote upstream to be
https://github.com/cuisongliu/automq-operator.git
using the following two commands:git remote add upstream https://github.com/cuisongliu/automq-operator.git git remote set-url --push upstream no-pushing
With this remote setting, you can check your git remote configuration like this:
$ git remote -v origin https://github.com/<your-username>/automq-operator.git (fetch) origin https://github.com/<your-username>/automq-operator.git (push) upstream https://github.com/cuisongliu/automq-operator.git (fetch) upstream no-pushing (push)
Adding this, we can easily synchronize local branches with upstream branches.
-
Create a branch to add a new feature or fix issues
Update local working directory and remote forked repository:
cd automq-operator git fetch upstream git checkout main
Create a new branch:
git checkout -b <new-branch>
Make any change on the
new-branch
then build and test your codes. -
Commit your changes to your local branch, lint before committing and commit with sign-off
git rebase upstream/main golangci-lint run -c .golangci.yml # lint git add -A # add changes to staging git commit -s -m "message for your changes" # -s adds a Signed-off-by trailer
-
Push your branch to your forked repository, it is recommended to have only one commit for a PR.
# sync up with upstream git fetch upstream main git rebase upstream/main git rebase -i <commit-id> # rebase with interactive mode to squash your commits into a single one git push # push to the remote repository, if it's a first time push, run git push --set-upstream origin <new-branch>
You can also use
git commit -s --amend && git push -f
to update modifications on the previous commit.If you have developed multiple features in the same branch, you should create PR separately by rebasing to the main branch between each push:
# create new branch, for example git checkout -b feature/infra git checkout -b <new branch> # update some code, feature1 git add -A git commit -m -s "feature one" git push # if it's first time push, run git push --set-upstream origin <new-branch> # then create pull request, and merge # update some new feature, feature2, rebase main branch first. git rebase upstream/main # rebase the current branch to upstream/main branch git add -A git commit -m -s "feature two" # then create pull request, and merge
-
File a pull request to cuisongliu/automq-operator:master
It is recommended to review your changes before filing a pull request. Check if your code doesn't conflict with the main branch and no redundant code is included.
Right now we assume every contribution via pull request is for branch master in automq-operator. Before contributing, be aware of branch definition would help a lot.
As a contributor, keep in mind again that every contribution via pull request is for branch master. While in project automq-operator, there are several other branches, we generally call them rc branches, release branches and backport branches.
Before officially releasing a version, we will checkout a rc(release candidate) branch. In this branch, we will test more than branch main.
When officially releasing a version, there will be a release branch before tagging. After tagging, we will delete the release branch.
When backporting some fixes to existing released version, we will checkout backport branches. After backporting, the backporting effects will be in PATCH number in MAJOR.MINOR.PATCH of SemVer.
Actually in automq-operator, we take two rules serious when committing:
Commit message could help reviewers better understand what the purpose of submitted PR is. It could help accelerate the code review procedure as well. We encourage contributors to use EXPLICIT commit message rather than ambiguous message. In general, we advocate the following commit message type:
- docs: xxxx. For example, "docs: add docs about storage installation".
- feature: xxxx.For example, "feature: make result show in sorted order".
- bugfix: xxxx. For example, "bugfix: fix panic when input nil parameter".
- style: xxxx. For example, "style: format the code style of Constants.java".
- refactor: xxxx. For example, "refactor: simplify to make codes more readable".
- test: xxx. For example, "test: add unit test case for func InsertIntoArray".
- chore: xxx. For example, "chore: integrate travis-ci". It's the type of mantainance change.
- other readable and explicit expression ways.
On the other side, we discourage contributors from committing message like the following ways:
fix bugupdateadd doc
Commit content represents all content changes included in one commit. We had better include things in one single commit which could support reviewer's complete review without any other commits' help. In another word, contents in one single commit can pass the CI to avoid code mess. In brief, there are two minor rules for us to keep in mind:
- avoid very large change in a commit;
- complete and reviewable for each commit.
No matter what the commit message, or commit content is, we do take more emphasis on code review.
PR is the only way to make change to automq-operator project files. To help reviewers better get your purpose, PR description could not be too detailed. We encourage contributors to follow the PR template to finish the pull request.
As a contributor, if you want to make any contribution to automq-operator project, we should reach an agreement on the version of tools used in the development environment. Here are some dependents with specific version:
- golang : v1.23+
When you develop the automq-operator project at the local environment, you should use subcommands of Makefile to help yourself to check and build the latest version of automq-operator. For the convenience of developers, we use the docker to build automq-operator. It can reduce problems of the developing environment.
The documentation for automq-operator includes:
Please obey the following rules to better format the docs, which would greatly improve the reading experience.
- Please do not use Chinese punctuations in English docs, and vice versa.
- Please use upper case letters where applicable, like the first letter of sentences / headings, etc.
- Please specify a language for each Markdown code blocks, unless there's no associated languages.
- Please insert a whitespace between Chinese and English words.
- Please use the correct case for technical terms, such as using HTTP instead of http, MySQL rather than mysql, Kubernetes instead of kubernetes, etc.
- Please check if there's any typos in the docs before submitting PRs.
You can also check out the Docusaurus docs to write docs with richer feature.
We choose GitHub as the primary place for automq-operator to collaborate. So the latest updates of automq-operator are always here. Although contributions via PR is an explicit way to help, we still call for any other ways.
- reply to other's issues if you could;
- help solve other user's problems;
- help review other's PR design;
- help review other's codes in PR;
- discuss about automq-operator to make things clearer;
- advocate automq-operator technology beyond GitHub;
- write blogs on automq-operator and so on.
In a word, ANY HELP IS CONTRIBUTION.