134 lines
No EOL
6.6 KiB
Markdown
134 lines
No EOL
6.6 KiB
Markdown
# Keycloak Community
|
|
|
|
Keycloak is an Open Source Identity and Access Management solution for modern Applications and Services.
|
|
|
|
## Building and working with the codebase
|
|
|
|
Details for building from source and working with the codebase are provided in the [building and working with the code base](docs/building.md) guide.
|
|
|
|
## Contributing to Keycloak
|
|
|
|
Keycloak is an Open Source community-driven project and we welcome contributions as well as feedback from the community. We do have a few guidelines in place to help you be successful with your contribution to Keycloak.
|
|
|
|
Firstly, if you want to contribute a larger change to Keycloak we ask that you open a
|
|
discussion first. For minor changes you can skip this part and go straight ahead to sending a contribution. Bear in mind that if you open a discussion first you can identify if the change will be accepted, as well as getting early feedback.
|
|
|
|
Here's a quick checklist for a good PR, more details below:
|
|
|
|
1. A discussion around the change (https://github.com/keycloak/keycloak/discussions/categories/ideas)
|
|
2. A GitHub Issue with a good description associated with the PR
|
|
3. One feature/change per PR
|
|
4. One commit per PR
|
|
5. PR rebased on main (`git rebase`, not `git pull`)
|
|
5. [Good descriptive commit message, with link to issue](#commit-messages-and-issue-linking)
|
|
6. No changes to code not directly related to your PR
|
|
7. Includes functional/integration test
|
|
8. Includes documentation
|
|
|
|
Once you have submitted your PR please monitor it for comments/feedback. We reserve the right to close inactive PRs if
|
|
you do not respond within 2 weeks (bear in mind you can always open a new PR if it is closed due to inactivity).
|
|
|
|
Also, please remember that we do receive a fairly large amount of PRs and also have code to write ourselves, so we may
|
|
not be able to respond to your PR immediately. The best place to ping us is on the thread you started on the dev mailing list.
|
|
|
|
### Finding something to work on
|
|
|
|
If you would like to contribute to Keycloak, but are not sure exactly what to work on, you can find a number of open
|
|
issues that are awaiting contributions in
|
|
[issues](https://github.com/keycloak/keycloak/issues).
|
|
|
|
### Open a discussion on a proposed change
|
|
|
|
As Keycloak is a community-driven project we require contributors to open a discussion on what they are planning to contribute.
|
|
|
|
Discussions should first and foremost be done through [GitHub Discussions](https://github.com/keycloak/keycloak/discussions/categories/ideas).
|
|
|
|
The [Keycloak Dev Mailing List](https://groups.google.com/forum/#!forum/keycloak-dev) can be used to notify the community on your new discussion, and can also be used for more low-level implementation discussions.
|
|
|
|
For very large proposals it can be inefficient to capture all the information in the GitHub Discussion. In this cases a separate design proposal can be sent to the [Keycloak Community repository](https://github.com/keycloak/keycloak-community/tree/main/design), and linked to from the GitHub Discussion.
|
|
|
|
### Create an issue
|
|
|
|
Take your time to write a proper issue including a good summary and description.
|
|
|
|
Remember this may be the first thing a reviewer of your PR will look at to get an idea of what you are proposing
|
|
and it will also be used by the community in the future to find about what new features and enhancements are included in
|
|
new releases.
|
|
|
|
### Implementing
|
|
|
|
Details for building from source and working with the codebase are provided in the
|
|
[building and working with the code base](docs/building.md) guide.
|
|
|
|
Do not format or refactor code that is not directly related to your contribution. If you do this it will significantly
|
|
increase our effort in reviewing your PR. If you have a strong need to refactor code then submit a separate PR for the
|
|
refactoring.
|
|
|
|
### Testing
|
|
|
|
Details for implementing tests are provided in the [writing tests](docs/tests-development.md) guide.
|
|
|
|
Do not add mock frameworks or other testing frameworks that are not already part of the testsuite. Please write tests
|
|
in the same way as we have written our tests.
|
|
|
|
### Documentation
|
|
|
|
We require contributions to include relevant documentation. Alongside your PR for code changes, prepare a PR to the [Keycloak Documentation](https://github.com/keycloak/keycloak-documentation).
|
|
|
|
In the description of your PR include a link to the PR to [Keycloak Documentation](https://github.com/keycloak/keycloak-documentation).
|
|
|
|
### Submitting your PR
|
|
|
|
When preparing your PR make sure you have a single commit and your branch is rebased on the main branch from the
|
|
project repository.
|
|
|
|
This means use the `git rebase` command and not `git pull` when integrating changes from main to your branch. See
|
|
[Git Documentation](https://git-scm.com/book/en/v2/Git-Branching-Rebasing) for more details.
|
|
|
|
We require that you squash to a single commit. You can do this with the `git rebase -i HEAD~X` command where X
|
|
is the number of commits you want to squash. See the [Git Documentation](https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History)
|
|
for more details.
|
|
|
|
The above helps us review your PR and also makes it easier for us to maintain the repository. It is also required by
|
|
our automatic merging process.
|
|
|
|
Please, also provide a good description [commit message, with a link to the issue](#commit-messages-and-issue-linking).
|
|
We also require that the commit message includes a link to the issue ([linking a pull request to an issue](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue)).
|
|
|
|
### Commit messages and issue linking
|
|
|
|
The format for a commit message should look like:
|
|
|
|
```
|
|
A brief descriptive summary
|
|
|
|
Optionally, more details around how it was implemented
|
|
|
|
Closes #1234
|
|
```
|
|
|
|
The very last part of the commit message should be a link to the GitHub issue, when done correctly GitHub will automatically link the issue with the PR. There are 3 alternatives provided by GitHub here:
|
|
|
|
* Closes: Issues in the same repository
|
|
* Fixes: Issues in a different repository (this shouldn't be used, as issues should be created in the correct repository instead)
|
|
* Resolves: When multiple issues are resolved (this should be avoided)
|
|
|
|
Although, GitHub allows alternatives (close, closed, fix, fixed), please only use the above formats.
|
|
|
|
Creating multi line commit messages with `git` can be done with:
|
|
|
|
```
|
|
git commit -m "Summary" -m "Optional description" -m "Closes #1234"
|
|
```
|
|
|
|
Alternatively, `shift + enter` can be used to add line breaks:
|
|
|
|
```
|
|
$ git commit -m "Summary
|
|
>
|
|
> Optional description
|
|
>
|
|
> Closes #1234"
|
|
```
|
|
|
|
For more information linking PRs to issues refer to the [GitHub Documentation](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue). |