|
| 1 | +# Contributing to the WebSphere Liberty Operator |
| 2 | + |
| 3 | +There are multiple ways to contribute: report bugs, request features, fix bugs, contribute code, improve documentation, etc. You must follow the established process and guidelines. We welcome your contributions! |
| 4 | + |
| 5 | +- [Raising issues](#Raising-Issues) |
| 6 | +- [Legal](#Legal) |
| 7 | +- [Coding Standards](#Coding-Standards) |
| 8 | + |
| 9 | +## Raising Issues |
| 10 | + |
| 11 | +Please raise any bug reports or feature requests on the [WebSphere Liberty Operator project repository's GitHub issue tracker](https://github.com/WASdev/websphere-liberty-operator/issues). Search the list to see if your issue has already been raised. |
| 12 | + |
| 13 | +A good bug report is one that makes it easy for everyone to understand what you were trying to do and what went wrong. Please provide as much context as possible so we can try to recreate the issue. |
| 14 | + |
| 15 | +## Legal |
| 16 | + |
| 17 | +We use the same approach - the Developer's Certificate of Origin 1.1 (DCO) - that the Linux® Kernel community uses to manage code contributions. |
| 18 | + |
| 19 | +For us to accept pull requests, you must declare that you wrote the code or, at least, have the right to contribute it to the repo under the open source license of the project in the repo. It's that easy. |
| 20 | + |
| 21 | +1. Read the following terms from [DCO](https://elinux.org/Developer_Certificate_Of_Origin) : |
| 22 | + |
| 23 | + ``` |
| 24 | +Developer's Certificate of Origin 1.1 |
| 25 | +
|
| 26 | +By making a contribution to this project, I certify that: |
| 27 | +
|
| 28 | +(a) The contribution was created in whole or in part by me and I |
| 29 | + have the right to submit it under the open source license |
| 30 | + indicated in the file; or |
| 31 | +
|
| 32 | +(b) The contribution is based upon previous work that, to the best |
| 33 | + of my knowledge, is covered under an appropriate open source |
| 34 | + license and I have the right under that license to submit that |
| 35 | + work with modifications, whether created in whole or in part |
| 36 | + by me, under the same open source license (unless I am |
| 37 | + permitted to submit under a different license), as indicated |
| 38 | + in the file; or |
| 39 | +
|
| 40 | +(c) The contribution was provided directly to me by some other |
| 41 | + person who certified (a), (b) or (c) and I have not modified |
| 42 | + it. |
| 43 | +
|
| 44 | +(d) I understand and agree that this project and the contribution |
| 45 | + are public and that a record of the contribution (including all |
| 46 | + personal information I submit with it, including my sign-off) is |
| 47 | + maintained indefinitely and may be redistributed consistent with |
| 48 | + this project or the open source license(s) involved. |
| 49 | + ``` |
| 50 | + |
| 51 | +2. If you can certify that it is true, sign off your `git commit` with a message like this: |
| 52 | + ``` |
| 53 | + Signed-off-by: John Doe <[email protected]> |
| 54 | + ``` |
| 55 | + You must use your real name (no pseudonyms or anonymous contributions, sorry). |
| 56 | + |
| 57 | + Instead of typing that in every git commit message, your Git tools might let you automatically add the details for you. If you configure them to do that, when you issue the `git commit` command, just add the `-s` option. |
| 58 | + |
| 59 | +If you are an IBMer, please contact us directly, as the contribution process is slightly different. |
| 60 | + |
| 61 | +## Coding Standards |
| 62 | + |
| 63 | +Please ensure you follow the coding standards used throughout the existing code base. |
0 commit comments