@@ -259,7 +259,7 @@ module GitHub (
259259 --
260260 -- * Create a commit comment
261261 -- * Update a commit comment
262- -- * Delete a commit comment
262+ -- * Delete a commit comment
263263 commentsForR ,
264264 commitCommentsForR ,
265265 commitCommentForR ,
@@ -271,6 +271,18 @@ module GitHub (
271271 commitR ,
272272 diffR ,
273273
274+ -- ** Deployments
275+ -- | See <https://developer.github.com/v3/repos/deployments/#deployments>
276+ --
277+ -- Missing endpoints:
278+ -- * Get a single deployment
279+ -- * Update a deployment
280+ -- * Get a single deployment status
281+ deploymentsWithOptionsForR ,
282+ createDeploymentR ,
283+ deploymentStatusesForR ,
284+ createDeploymentStatusR ,
285+
274286 -- ** Forks
275287 -- | See <https://developer.github.com/v3/repos/forks/>
276288 --
@@ -344,7 +356,7 @@ module GitHub (
344356 createStatusR ,
345357 statusesForR ,
346358 statusForR ,
347-
359+
348360 -- ** Rate Limit
349361 -- | See <https://developer.github.com/v3/rate_limit/>
350362 rateLimit ,
@@ -375,13 +387,14 @@ import GitHub.Endpoints.Organizations
375387import GitHub.Endpoints.Organizations.Members
376388import GitHub.Endpoints.Organizations.Teams
377389import GitHub.Endpoints.PullRequests
378- import GitHub.Endpoints.PullRequests.Reviews
379390import GitHub.Endpoints.PullRequests.Comments
391+ import GitHub.Endpoints.PullRequests.Reviews
380392import GitHub.Endpoints.RateLimit
381393import GitHub.Endpoints.Repos
382394import GitHub.Endpoints.Repos.Collaborators
383395import GitHub.Endpoints.Repos.Comments
384396import GitHub.Endpoints.Repos.Commits
397+ import GitHub.Endpoints.Repos.Deployments
385398import GitHub.Endpoints.Repos.Forks
386399import GitHub.Endpoints.Repos.Releases
387400import GitHub.Endpoints.Repos.Statuses
0 commit comments