github.com/cellofellow/gopkg@v0.0.0-20140722061823-eec0544a62ad/database/mysql/CONTRIBUTING.md (about)

     1  # Contributing Guidelines
     2  
     3  ## Reporting Issues
     4  
     5  Before creating a new Issue, please check first if a similar Issue [already exists](https://github.com/go-sql-driver/mysql/issues?state=open) or was [recently closed](https://github.com/go-sql-driver/mysql/issues?direction=desc&page=1&sort=updated&state=closed).
     6  
     7  Please provide the following minimum information:
     8  * Your Go-MySQL-Driver version (or git SHA)
     9  * Your Go version (run `go version` in your console)
    10  * A detailed issue description
    11  * Error Log if present
    12  * If possible, a short example
    13  
    14  
    15  ## Contributing Code
    16  
    17  By contributing to this project, you share your code under the Mozilla Public License 2, as specified in the LICENSE file.
    18  Don't forget to add yourself to the AUTHORS file.
    19  
    20  ### Pull Requests Checklist
    21  
    22  Please check the following points before submitting your pull request:
    23  - [x] Code compiles correctly
    24  - [x] Created tests, if possible
    25  - [x] All tests pass
    26  - [x] Extended the README / documentation, if necessary
    27  - [x] Added yourself to the AUTHORS file
    28  
    29  ### Code Review
    30  
    31  Everyone is invited to review and comment on pull requests.
    32  If it looks fine to you, comment with "LGTM" (Looks good to me).
    33  
    34  If changes are required, notice the reviewers with "PTAL" (Please take another look) after committing the fixes.
    35  
    36  Before merging the Pull Request, at least one [team member](https://github.com/go-sql-driver?tab=members) must have commented with "LGTM".
    37  
    38  ## Development Ideas
    39  
    40  If you are looking for ideas for code contributions, please check our [Development Ideas](https://github.com/go-sql-driver/mysql/wiki/Development-Ideas) Wiki page.