We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12e3e42 commit a04cba6Copy full SHA for a04cba6
1 file changed
src/GitHub.hs
@@ -283,6 +283,13 @@ module GitHub (
283
commitR,
284
diffR,
285
286
+ -- ** Deploy Keys
287
+ -- | See <https://developer.github.com/v3/repos/keys/>
288
+ deployKeysForR,
289
+ deployKeyForR,
290
+ createRepoDeployKeyR,
291
+ deleteRepoDeployKeyR,
292
+
293
-- ** Deployments
294
-- | See <https://developer.github.com/v3/repos/deployments/#deployments>
295
--
@@ -419,6 +426,7 @@ import GitHub.Endpoints.Repos
419
426
import GitHub.Endpoints.Repos.Collaborators
420
427
import GitHub.Endpoints.Repos.Comments
421
428
import GitHub.Endpoints.Repos.Commits
429
+import GitHub.Endpoints.Repos.DeployKeys
422
430
import GitHub.Endpoints.Repos.Deployments
423
431
import GitHub.Endpoints.Repos.Forks
424
432
import GitHub.Endpoints.Repos.Invitations
0 commit comments