github.com/verrazzano/verrazzano@v1.7.0/CONTRIBUTING.md (about) 1 # Contributing 2 3 Oracle welcomes contributions to this repository from anyone. 4 5 If you want to submit a pull request to fix a bug or enhance an existing 6 feature, please first open an issue and link to that issue when you 7 submit your pull request. 8 9 If you have any questions about a possible submission, feel free to open 10 an issue too. 11 12 ## Contributing to Verrazzano 13 14 Pull requests can be made under 15 [The Oracle Contributor Agreement](https://oca.opensource.oracle.com) (OCA). 16 17 For pull requests to be accepted, the bottom of your commit message must have 18 the following line using your name and e-mail address as it appears in the 19 OCA Signatories list. 20 21 ``` 22 Signed-off-by: Your Name <you@example.org> 23 ``` 24 25 This can be automatically added to pull requests by committing with: 26 27 ``` 28 git commit --signoff 29 ``` 30 31 Only pull requests from committers that can be verified as having 32 signed the OCA can be accepted. 33 34 ### Pull request process 35 36 1. Fork this repository 37 1. Create a branch in your fork to implement the changes. We recommend using 38 the issue number as part of your branch name, e.g. `1234-fixes` 39 1. Ensure that any documentation is updated with the changes that are required 40 by your fix. 41 1. Ensure that any samples are updated if the base image has been changed. 42 1. Submit the pull request. *Do not leave the pull request blank*. Explain exactly 43 what your changes are meant to do and provide simple steps on how to validate 44 your changes. Ensure that you reference the issue you created as well. 45 We will assign the pull request to 2-3 people for review before it is merged.