🎉🎊 Thanks for taking the time to contribute! 🎉🎊
There are many ways to contribute. Here are some.
If there's any issue you encounter or anything that needs to be fixed, feel free to create a GitHub issue.
If this is your first time contributing to a GitHub repo, we recommmend going through the GitHub quickstart.
It's a good idea to discuss your plans with the Beam community through the dev@beam.apache.org mailing list before doing any changes.
Here's a small overview of the process.
Clone the repo.
export GITHUB_USERNAME="my-github-username" git clone git@github.com:$GITHUB_USERNAME/beam-starter-go.git
Set the upstream remote branch.
cd beam-starter-go git remote add upstream git@github.com:apache/beam-starter-go.git
Create and change to a new branch.
git checkout -B my-branch-name
Modify the code! 😱
Run the tests. For steps on how to run them see the README.md
.
Commit and push your changes to your branch in origin
.
git commit -m "one line description of your changes" git push
Add reviewers, and address review comments.
Once it's approved, we can merge the Pull Request.
For more information about proposing changes to a GitHub repository, see the Propose changes page in the GitHub docs.
For information on how to contribute to Apache Beam, see the Contribution guide.