We follow the standard GitHub fork & pull approach to pull requests. Just fork the official repo, develop in a branch, and submit a PR!
You're always welcome to submit your PR straight away and start the discussion (without reading the rest of this wonderful doc, or the README.md). The goal of these notes is to make your experience contributing to Pekko Connectors as smooth and pleasant as possible. We're happy to guide you through the process once you've submitted your PR.
If you have questions about the contribution process or discuss specific issues, please interact with the community using the following resources.
- GitHub discussions: for questions and general discussion.
- Pekko dev mailing list: for Pekko development discussions.
- GitHub issues: for bug reports and feature requests. Please search the existing issues before creating new ones. If you are unsure whether you have found a bug, consider asking in GitHub discussions or the mailing list first.
This is the process for committing code into main.
-
To avoid duplicated effort, it might be good to check the issue tracker and existing pull requests for existing work.
- If there is no ticket yet, feel free to create one to discuss the problem and the approach you want to take to solve it.
-
Perform your work according to the pull request requirements.
-
When the feature or fix is completed you should open a Pull Request on GitHub. Prefix your PR title with a marker to show which module it affects (eg. "JMS", or "AWS S3").
-
The Pull Request should be reviewed by other maintainers (as many as feasible/practical). Outside contributors are encouraged to participate in the review process, it is not a closed process.
-
After the review you should fix the issues (review comments, CI failures, compiler warnings) by pushing a new commit for new review, iterating until the reviewers give their thumbs up and CI tests pass.
-
If the branch merge conflicts with its target, rebase your branch onto the target branch.
We've collected a few notes on how we would like Pekko Connectors modules to be designed based on what has evolved so far. Please have a look at our contributor advice.
For a Pull Request to be considered at all it has to meet these requirements:
-
Pull Request branch should be given a unique descriptive name that explains its intent. Prefix your PR title with a marker to show which module it affects (eg. "JMS", or "AWS S3").
-
Refer to issues it intends to fix by adding "Fixes #{issue id}" to the notes.
-
Code in the branch should live up to the current code standard:
- Not violate DRY.
- Boy Scout Rule needs to have been applied.
-
Regardless if the code introduces new features or fixes bugs or regressions, it must have comprehensive tests.
-
The code must be well documented (see the Documentation section).
-
The commit messages must properly describe the changes, see further below.
-
Do not use
@author
tags since it does not encourage Collective Code Ownership. Contributors get the credit they deserve in the release notes.
If these requirements are not met then the code should not be merged into 'main' branch, or even reviewed - regardless of how good or important it is. No exceptions.
Follow these guidelines when creating public commits and writing commit messages.
-
First line should be a descriptive sentence what the commit is doing. It should be possible to fully understand what the commit does — but not necessarily how it does it — by just reading this single line. We follow the “imperative present tense” style for commit messages (more info here).
It is not ok to only list the ticket number, type "minor fix" or similar. If the commit is a small fix, then you are done. If not, go to 3.
-
Following the single line description should be a blank line followed by an enumerated list with the details of the commit.
-
Add keywords for your commit (depending on the degree of automation we reach, the list may change over time):
Review by @gituser
- if you want to notify someone on the team. The others can, and are encouraged to participate.
Example:
Add eventsByTag query #123
* Details 1
* Details 2
* Details 3
The project uses scalafmt to ensure code quality which is automatically checked on
every PR. If you would like to check for any potential code style problems locally you can run sbt checkCodeStyle
and if you want to apply the code style then you can run sbt applyCodeStyle
.
Throughout the history of the codebase various formatting commits have been applied as the scalafmt style has evolved over time, if desired one can setup git blame to ignore these commits. The hashes for these specific are stored in this file so to configure git blame to ignore these commits you can execute the following.
git config blame.ignoreRevsFile .git-blame-ignore-revs
- GitHub actions automatically merge the code, builds it, runs the tests and sets Pull Request status accordingly of results in GitHub.
- Scalafmt enforces some of the code style rules.
- sbt-header plugin manages consistent copyright headers in every source file.
- Enabling
fatalWarnings := true
for all projects.