github.com/google/go-github/v74@v74.0.0/CONTRIBUTING.md (about)

     1  # How to contribute
     2  
     3  We'd love to accept your patches and contributions to this project. There are
     4  a just a few small guidelines you need to follow.
     5  
     6  ## Contributor License Agreement
     7  
     8  Contributions to any Google project must be accompanied by a Contributor
     9  License Agreement. This is not a copyright **assignment**, it simply gives
    10  Google permission to use and redistribute your contributions as part of the
    11  project. Head over to <https://cla.developers.google.com/> to see your current
    12  agreements on file or to sign a new one.
    13  
    14  You generally only need to submit a CLA once, so if you've already submitted one
    15  (even if it was for a different project), you probably don't need to do it
    16  again.
    17  
    18  ## Reporting issues
    19  
    20  Bugs, feature requests, and development-related questions should be directed to
    21  our [GitHub issue tracker](https://github.com/google/go-github/issues).  If
    22  reporting a bug, please try and provide as much context as possible such as
    23  your operating system, Go version, and anything else that might be relevant to
    24  the bug.  For feature requests, please explain what you're trying to do, and
    25  how the requested feature would help you do that.
    26  
    27  Security related bugs can either be reported in the issue tracker, or if they
    28  are more sensitive, emailed to <opensource@google.com>.
    29  
    30  ## Reviewing PRs
    31  
    32  In addition to writing code, community projects also require community
    33  contributions in other ways; one of these is reviewing code contributions. If
    34  you are willing to review PRs please open a PR to add your GitHub username to
    35  the [REVIEWERS](./REVIEWERS) file. By adding your GitHub username to the list
    36  of reviewers you are giving contributors permission to request a review for a
    37  PR that has already been approved by a maintainer. If you are asked to review a
    38  PR and either do not have the time or do not think you are able to you should
    39  feel comfortable politely saying no.
    40  
    41  If at any time you would like to remove your permission to be contacted for a
    42  review you can open a PR to remove your name from the [REVIEWERS](./REVIEWERS)
    43  file.
    44  
    45  ## Submitting a patch
    46  
    47  1. It's generally best to start by opening a new issue describing the bug or
    48     feature you're intending to fix. Even if you think it's relatively minor,
    49     it's helpful to know what people are working on. Mention in the initial issue
    50     that you are planning to work on that bug or feature so that it can be
    51     assigned to you.
    52  
    53  2. Follow the normal process of [forking][] the project, and set up a new branch
    54     to work in. It's important that each group of changes be done in separate
    55     branches in order to ensure that a pull request only includes the commits
    56     related to that bug or feature.
    57  
    58  3. Any significant changes should almost always be accompanied by tests. The
    59     project already has good test coverage, so look at some of the existing tests
    60     if you're unsure how to go about it. Coverage is [monitored by codecov.io][],
    61     which flags pull requests that decrease test coverage. This doesn't
    62     necessarily mean that PRs with decreased coverage won't be merged. Sometimes
    63     a decrease in coverage makes sense, but if your PR is flagged, you should
    64     either add tests to cover those lines or add a PR comment explaining the
    65     untested lines.
    66  
    67  4. Run `script/fmt.sh`, `script/test.sh` and `script/lint.sh` to format your code and
    68     check that it passes all tests and linters. `script/lint.sh` may also tell you
    69     that generated files need to be updated. If so, run `script/generate.sh` to
    70     update them.
    71  
    72  5. Do your best to have [well-formed commit messages][] for each change. This
    73     provides consistency throughout the project, and ensures that commit messages
    74     are able to be formatted properly by various git tools.
    75  
    76  6. Finally, push the commits to your fork and submit a [pull request][].
    77     **NOTE:** Please do not use force-push on PRs in this repo, as it makes it
    78     more difficult for reviewers to see what has changed since the last code
    79     review. We always perform "squash and merge" actions on PRs in this repo, so it doesn't
    80     matter how many commits your PR has, as they will end up being a single commit after merging.
    81     This is done to make a much cleaner `git log` history and helps to find regressions in the code
    82     using existing tools such as `git bisect`.
    83  
    84     - If your PR needs additional reviews you can request one of the
    85       [REVIEWERS][] takes a look by mentioning them in a PR comment.
    86  
    87  [forking]: https://help.github.com/articles/fork-a-repo
    88  [well-formed commit messages]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
    89  [pull request]: https://help.github.com/articles/creating-a-pull-request
    90  [monitored by codecov.io]: https://codecov.io/gh/google/go-github
    91  [REVIEWERS]: ./REVIEWERS
    92  
    93  ## Code Comments
    94  
    95  Every exported method needs to have code comments that follow
    96  [Go Doc Comments][]. A typical method's comments will look like this:
    97  
    98  ```go
    99  // Get fetches a repository.
   100  //
   101  // GitHub API docs: https://docs.github.com/rest/repos/repos#get-a-repository
   102  //
   103  //meta:operation GET /repos/{owner}/{repo}
   104  func (s *RepositoriesService) Get(ctx context.Context, owner, repo string) (*Repository, *Response, error) {
   105  u := fmt.Sprintf("repos/%v/%v", owner, repo)
   106  req, err := s.client.NewRequest("GET", u, nil)
   107  ...
   108  }
   109  ```
   110  
   111  The first line is the name of the method followed by a short description. This
   112  could also be a longer description if needed, but there is no need to repeat any
   113  details that are documented in GitHub's documentation because users are expected
   114  to follow the documentation links to learn more.
   115  
   116  After the description comes a link to the GitHub API documentation. This is
   117  added or fixed automatically when you run `script/generate.sh`, so you won't
   118  need to set this yourself.
   119  
   120  Finally, the `//meta:operation` comment is a directive to the code generator
   121  that maps the method to the corresponding OpenAPI operation. Once again, there
   122  can be multiple directives for methods that call multiple
   123  endpoints. `script/generate.sh` will normalize these directives for you, so if
   124  you are adding a new method you can use the pattern from the `u := fmt.Sprintf`
   125  line instead of looking up what the url parameters are called in the OpenAPI
   126  description.
   127  
   128  [Go Doc Comments]: https://go.dev/doc/comment
   129  
   130  ## Metadata
   131  
   132  GitHub publishes [OpenAPI descriptions of their API][]. We use these
   133  descriptions to keep documentation links up to date and to keep track of which
   134  methods call which endpoints via the `//meta:operation` comments described
   135  above. GitHub's descriptions are far too large to keep in this repository or to
   136  pull down every time we generate code, so we keep only the metadata we need
   137  in `openapi_operations.yaml`.
   138  
   139  ### openapi_operations.yaml
   140  
   141  Most contributors won't need to interact with `openapi_operations.yaml`, but it
   142  may be useful to know what it is. Its sections are:
   143  
   144  - `openapi_operations` - is the metadata that comes from GitHub's OpenAPI
   145    descriptions. It is generated by `script/metadata.sh update-openapi` and
   146    should not be edited by hand. In the rare case where it needs to be
   147    overridden, use the `operation_overrides` section instead.
   148  
   149    An operation consists of `name`, `documentation_url`,
   150    and `openapi_files`. `openapi_files` is the list of files where the operation
   151    is described. In order or preference, values can be "api.github.com.json" for
   152    operations available on the free plan, "ghec.json" for operations available on
   153    GitHub Enterprise Cloud or "ghes-<version>.json" for operations available on
   154    GitHub Enterprise Server. When an operation is described in multiple ghes
   155    files, only the most recent version is included. `documentation_url` is the
   156    URL that should be linked from godoc. It is the documentation link found in
   157    the first file listed in `openapi_files`.
   158  
   159  - `openapi_commit` - is the git commit that `script/metadata.sh update-openapi`
   160    saw when it last updated `openapi_operations`. It is not necessarily the most
   161    recent commit seen because `update-openapi` doesn't update the file when
   162    there are no changes to `openapi_operations`.
   163  
   164  - `operations` - contains manually added metadata that is not in GitHub's
   165    OpenAPI descriptions. There are only a few of these. Some have
   166    documentation_urls that point to relevant GitHub documentation that is not in
   167    the OpenAPI descriptions. Others have no documentation_url and result in a
   168    note in the generated code that the documentation is missing.
   169  
   170  - `operation_overrides` - is where we override the documentation_url for 
   171    operations where the link in the OpenAPI descriptions is wrong.
   172  
   173  ### tools/metadata
   174  
   175  The `tools/metadata` package is a command-line tool for working with metadata.
   176  In a typical workflow, you won't use it directly, but you will use it indirectly
   177  through `script/generate.sh` and `script/lint.sh`.
   178  
   179  Its subcommands are:
   180  
   181  - `update-openapi` - updates `openapi_operations.yaml` with the latest
   182    information from GitHub's OpenAPI descriptions. With `--validate` it will
   183    validate that the descriptions are correct as of the commit
   184    in `openapi_commit`. `update-openapi --validate` is called
   185    by `script/lint.sh`.
   186  
   187  - `update-go` - updates Go files with documentation URLs and formats comments.
   188    It is used by `script/generate.sh`.
   189  
   190  - `format` - formats whitespace in `openapi_operations.yaml` and sorts its
   191    arrays. It is used by `script/fmt.sh`.
   192  
   193  - `unused` - lists operations from `openapi_operations.yaml` that are not mapped
   194    from any methods.
   195  
   196  [OpenAPI descriptions of their API]: https://github.com/github/rest-api-description
   197  
   198  ## Scripts
   199  
   200  The `script` directory has shell scripts that help with common development
   201  tasks.
   202  
   203  **script/fmt.sh** formats all go code in the repository.
   204  
   205  **script/generate.sh** runs code generators and `go mod tidy` on all modules. With
   206  `--check` it checks that the generated files are current.
   207  
   208  **script/lint.sh** runs linters on the project and checks generated files are
   209  current.
   210  
   211  **script/metadata.sh** runs `tools/metadata`. See the [Metadata](#metadata)
   212  section for more information.
   213  
   214  **script/test.sh** runs tests on all modules.
   215  
   216  ## Other notes on code organization
   217  
   218  Currently, everything is defined in the main `github` package, with API methods
   219  broken into separate service objects. These services map directly to how
   220  the [GitHub API documentation][] is organized, so use that as your guide for
   221  where to put new methods.
   222  
   223  Code is organized in files also based pretty closely on the GitHub API
   224  documentation, following the format `{service}_{api}.go`. For example, methods
   225  defined at <https://docs.github.com/en/rest/webhooks/repos> live in
   226  [repos_hooks.go][].
   227  
   228  [GitHub API documentation]: https://docs.github.com/en/rest
   229  [repos_hooks.go]: https://github.com/google/go-github/blob/master/github/repos_hooks.go
   230  
   231  ## Maintainer's Guide
   232  
   233  (These notes are mostly only for people merging in pull requests.)
   234  
   235  **Verify CLAs.** CLAs must be on file for the pull request submitter and commit
   236  author(s). Google's CLA verification system should handle this automatically
   237  and will set commit statuses as appropriate. If there's ever any question about
   238  a pull request, ask [willnorris](https://github.com/willnorris).
   239  
   240  **Always try to maintain a clean, linear git history.** With very few
   241  exceptions, running `git log` should not show a bunch of branching and merging.
   242  
   243  Never use the GitHub "merge" button, since it always creates a merge commit.
   244  Instead, check out the pull request locally ([these git aliases
   245  help][git-aliases]), then cherry-pick or rebase them onto master. If there are
   246  small cleanup commits, especially as a result of addressing code review
   247  comments, these should almost always be squashed down to a single commit. Don't
   248  bother squashing commits that really deserve to be separate though. If needed,
   249  feel free to amend additional small changes to the code or commit message that
   250  aren't worth going through code review for.
   251  
   252  If you made any changes like squashing commits, rebasing onto master, etc, then
   253  GitHub won't recognize that this is the same commit in order to mark the pull
   254  request as "merged". So instead, amend the commit message to include a line
   255  "Fixes #0", referencing the pull request number. This would be in addition to
   256  any other "Fixes" lines for closing related issues. If you forget to do this,
   257  you can also leave a comment on the pull request [like this][rebase-comment].
   258  If you made any other changes, it's worth noting that as well, [like
   259  this][modified-comment].
   260  
   261  [git-aliases]: https://github.com/willnorris/dotfiles/blob/d640d010c23b1116bdb3d4dc12088ed26120d87d/git/.gitconfig#L13-L15
   262  [rebase-comment]: https://github.com/google/go-github/pull/277#issuecomment-183035491
   263  [modified-comment]: https://github.com/google/go-github/pull/280#issuecomment-184859046
   264  
   265  **When creating a release, don't forget to update the `Version` constant in `github.go`.** This is used to
   266  send the version in the `User-Agent` header to identify clients to the GitHub API.