├── .github └── workflows │ └── haskell-ci.yml ├── .gitignore ├── .stylish-haskell.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Setup.hs ├── cabal.haskell-ci ├── cabal.project ├── fix-whitespace.yaml ├── fixtures ├── actions │ ├── artifact.json │ ├── artifacts-list.json │ ├── cache-list.json │ ├── org-cache-usage.json │ ├── org-public-key.json │ ├── org-secrets-list.json │ ├── repo-cache-usage.json │ ├── selected-repositories-for-secret.json │ ├── workflow-job.json │ ├── workflow-list.json │ └── workflow-runs-list.json ├── issue-search.json ├── list-teams.json ├── members-list.json ├── pull-request-approved-review.json ├── pull-request-opened.json ├── pull-request-pending-review.json ├── pull-request-review-requested.json ├── pull-request-team-review-requested.json ├── user-bot.json ├── user-organizations.json └── user.json ├── github.cabal ├── samples ├── Activity │ └── Starring │ │ ├── StarRepo.hs │ │ └── UnstarRepo.hs ├── Enterprise │ ├── CreateOrganization.hs │ └── RenameOrganization.hs ├── Gists │ ├── Comments │ │ ├── ShowComment.hs │ │ └── ShowComments.hs │ ├── DeleteGist.hs │ ├── ListGists.hs │ ├── ShowGist.hs │ ├── StarGist.hs │ └── UnstarGist.hs ├── GitData │ ├── Blobs │ │ └── GitHashObject.hs │ ├── Commits │ │ └── GitShow.hs │ ├── References │ │ ├── GitCreateReference.hs │ │ ├── GitLsRemote.hs │ │ ├── GitLsRemoteTags.hs │ │ └── GitLsRemoteWithRef.hs │ └── Trees │ │ ├── GitLsTree.hs │ │ └── GitLsTreeRecursively.hs ├── Issues │ ├── Comments │ │ ├── ShowComment.hs │ │ └── ShowComments.hs │ ├── CreateIssue.hs │ ├── EditIssue.hs │ ├── Events │ │ ├── ShowEvent.hs │ │ ├── ShowIssueEvents.hs │ │ └── ShowRepoEvents.hs │ ├── IssueReport │ │ ├── Issues.hs │ │ ├── IssuesEnterprise.hs │ │ └── Report.hs │ ├── Labels │ │ ├── CreateLabels.hs │ │ ├── ShowIssueLabels.hs │ │ ├── ShowLabel.hs │ │ ├── ShowMilestoneLabels.hs │ │ └── ShowRepoLabels.hs │ ├── Milestones │ │ ├── ShowMilestone.hs │ │ └── ShowMilestones.hs │ ├── ShowIssue.hs │ └── ShowRepoIssues.hs ├── LICENSE ├── Operational │ └── Operational.hs ├── Organizations │ ├── Members │ │ └── ShowMembers.hs │ ├── ShowPublicOrganization.hs │ ├── ShowPublicOrganizations.hs │ └── Teams │ │ ├── CreateTeamFor.hs │ │ └── ListTeamsForOrganization.hs ├── Pulls │ ├── Comments │ │ ├── ListComments.hs │ │ └── ShowComment.hs │ ├── Diff.hs │ ├── IsMergedPull.hs │ ├── ListPulls.hs │ ├── MergePull.hs │ ├── ShowCommits.hs │ ├── ShowPull.hs │ └── UpdatePull.hs ├── RateLimit.hs ├── Repos │ ├── Collaborators │ │ ├── IsCollaborator.hs │ │ └── ListCollaborators.hs │ ├── Commits │ │ ├── CommitComment.hs │ │ ├── CommitComments.hs │ │ ├── GitDiff.hs │ │ ├── GitLog.hs │ │ ├── GitShow.hs │ │ └── RepoComments.hs │ ├── Contents.hs │ ├── DeployKeys │ │ ├── CreateDeployKey.hs │ │ ├── DeleteDeployKey.hs │ │ ├── ListDeployKeys.hs │ │ └── ShowDeployKey.hs │ ├── Forks │ │ └── ListForks.hs │ ├── GetReadme.hs │ ├── ListBranches.hs │ ├── ListContributors.hs │ ├── ListContributorsWithAnonymous.hs │ ├── ListLanguages.hs │ ├── ListOrgRepos.hs │ ├── ListTags.hs │ ├── ListUserRepos.hs │ ├── ShowRepo.hs │ ├── Starring │ │ └── ListStarred.hs │ ├── Watching │ │ ├── ListWatched.hs │ │ ├── ListWatchers.hs │ │ └── Unwatch.hs │ └── Webhooks │ │ ├── CreateWebhook.hs │ │ ├── DeleteWebhook.hs │ │ ├── EditWebhook.hs │ │ ├── ListWebhook.hs │ │ ├── ListWebhooks.hs │ │ ├── PingWebhook.hs │ │ └── TestPushWebhook.hs ├── Search │ ├── SearchCode.hs │ ├── SearchIssues.hs │ └── SearchRepos.hs ├── Teams │ ├── DeleteTeam.hs │ ├── EditTeam.hs │ ├── ListRepos.hs │ ├── ListTeamsCurrent.hs │ ├── Memberships │ │ ├── AddTeamMembershipFor.hs │ │ ├── DeleteTeamMembershipFor.hs │ │ └── TeamMembershipInfoFor.hs │ ├── Repos │ │ └── AddOrUpdateTeamRepo.hs │ └── TeamInfoFor.hs ├── Users │ ├── Emails │ │ └── ListEmails.hs │ ├── Followers │ │ ├── Example.hs │ │ ├── ListFollowers.hs │ │ └── ListFollowing.hs │ ├── PublicSSHKeys │ │ ├── CreatePublicSSHKey.hs │ │ ├── DeletePublicSSHKey.hs │ │ ├── ListPublicSSHKeys.hs │ │ └── ShowPublicSSHKey.hs │ ├── ShowUser.hs │ └── ShowUser2.hs ├── github-samples.cabal └── src │ └── Common.hs ├── spec ├── GitHub │ ├── Actions │ │ ├── ArtifactsSpec.hs │ │ ├── CacheSpec.hs │ │ ├── SecretsSpec.hs │ │ ├── WorkflowJobSpec.hs │ │ ├── WorkflowRunsSpec.hs │ │ └── WorkflowSpec.hs │ ├── ActivitySpec.hs │ ├── CommitsSpec.hs │ ├── EventsSpec.hs │ ├── IssuesSpec.hs │ ├── OrganizationsSpec.hs │ ├── PublicSSHKeysSpec.hs │ ├── PullRequestReviewsSpec.hs │ ├── PullRequestsSpec.hs │ ├── RateLimitSpec.hs │ ├── ReleasesSpec.hs │ ├── ReposSpec.hs │ ├── ReviewDecodeSpec.hs │ ├── SearchSpec.hs │ └── UsersSpec.hs └── Spec.hs └── src ├── GitHub.hs └── GitHub ├── Auth.hs ├── Data.hs ├── Data ├── Actions │ ├── Artifacts.hs │ ├── Cache.hs │ ├── Common.hs │ ├── Secrets.hs │ ├── WorkflowJobs.hs │ ├── WorkflowRuns.hs │ └── Workflows.hs ├── Activities.hs ├── Comments.hs ├── Content.hs ├── Definitions.hs ├── DeployKeys.hs ├── Deployments.hs ├── Email.hs ├── Enterprise.hs ├── Enterprise │ └── Organizations.hs ├── Events.hs ├── Gists.hs ├── GitData.hs ├── Id.hs ├── Invitation.hs ├── Issues.hs ├── Milestone.hs ├── Name.hs ├── Options.hs ├── PublicSSHKeys.hs ├── PullRequests.hs ├── RateLimit.hs ├── Reactions.hs ├── Releases.hs ├── Repos.hs ├── Request.hs ├── Reviews.hs ├── Search.hs ├── Statuses.hs ├── Teams.hs ├── URL.hs ├── Webhooks.hs └── Webhooks │ └── Validate.hs ├── Endpoints ├── Actions │ ├── Artifacts.hs │ ├── Cache.hs │ ├── Secrets.hs │ ├── WorkflowJobs.hs │ ├── WorkflowRuns.hs │ └── Workflows.hs ├── Activity │ ├── Events.hs │ ├── Notifications.hs │ ├── Starring.hs │ └── Watching.hs ├── Enterprise │ └── Organizations.hs ├── Gists.hs ├── Gists │ └── Comments.hs ├── GitData │ ├── Blobs.hs │ ├── Commits.hs │ ├── References.hs │ └── Trees.hs ├── Issues.hs ├── Issues │ ├── Comments.hs │ ├── Events.hs │ ├── Labels.hs │ └── Milestones.hs ├── Organizations.hs ├── Organizations │ ├── Members.hs │ ├── OutsideCollaborators.hs │ └── Teams.hs ├── PullRequests.hs ├── PullRequests │ ├── Comments.hs │ └── Reviews.hs ├── RateLimit.hs ├── Reactions.hs ├── Repos.hs ├── Repos │ ├── Collaborators.hs │ ├── Comments.hs │ ├── Commits.hs │ ├── Contents.hs │ ├── DeployKeys.hs │ ├── Deployments.hs │ ├── Forks.hs │ ├── Invitations.hs │ ├── Releases.hs │ ├── Statuses.hs │ └── Webhooks.hs ├── Search.hs ├── Users.hs └── Users │ ├── Emails.hs │ ├── Followers.hs │ └── PublicSSHKeys.hs ├── Enterprise.hs ├── Internal └── Prelude.hs └── Request.hs /.github/workflows/haskell-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/.github/workflows/haskell-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylish-haskell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/.stylish-haskell.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /cabal.haskell-ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/cabal.haskell-ci -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/cabal.project -------------------------------------------------------------------------------- /fix-whitespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fix-whitespace.yaml -------------------------------------------------------------------------------- /fixtures/actions/artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/actions/artifact.json -------------------------------------------------------------------------------- /fixtures/actions/artifacts-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/actions/artifacts-list.json -------------------------------------------------------------------------------- /fixtures/actions/cache-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/actions/cache-list.json -------------------------------------------------------------------------------- /fixtures/actions/org-cache-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/actions/org-cache-usage.json -------------------------------------------------------------------------------- /fixtures/actions/org-public-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/actions/org-public-key.json -------------------------------------------------------------------------------- /fixtures/actions/org-secrets-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/actions/org-secrets-list.json -------------------------------------------------------------------------------- /fixtures/actions/repo-cache-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/actions/repo-cache-usage.json -------------------------------------------------------------------------------- /fixtures/actions/selected-repositories-for-secret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/actions/selected-repositories-for-secret.json -------------------------------------------------------------------------------- /fixtures/actions/workflow-job.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/actions/workflow-job.json -------------------------------------------------------------------------------- /fixtures/actions/workflow-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/actions/workflow-list.json -------------------------------------------------------------------------------- /fixtures/actions/workflow-runs-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/actions/workflow-runs-list.json -------------------------------------------------------------------------------- /fixtures/issue-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/issue-search.json -------------------------------------------------------------------------------- /fixtures/list-teams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/list-teams.json -------------------------------------------------------------------------------- /fixtures/members-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/members-list.json -------------------------------------------------------------------------------- /fixtures/pull-request-approved-review.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/pull-request-approved-review.json -------------------------------------------------------------------------------- /fixtures/pull-request-opened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/pull-request-opened.json -------------------------------------------------------------------------------- /fixtures/pull-request-pending-review.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/pull-request-pending-review.json -------------------------------------------------------------------------------- /fixtures/pull-request-review-requested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/pull-request-review-requested.json -------------------------------------------------------------------------------- /fixtures/pull-request-team-review-requested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/pull-request-team-review-requested.json -------------------------------------------------------------------------------- /fixtures/user-bot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/user-bot.json -------------------------------------------------------------------------------- /fixtures/user-organizations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/user-organizations.json -------------------------------------------------------------------------------- /fixtures/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/fixtures/user.json -------------------------------------------------------------------------------- /github.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/github.cabal -------------------------------------------------------------------------------- /samples/Activity/Starring/StarRepo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Activity/Starring/StarRepo.hs -------------------------------------------------------------------------------- /samples/Activity/Starring/UnstarRepo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Activity/Starring/UnstarRepo.hs -------------------------------------------------------------------------------- /samples/Enterprise/CreateOrganization.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Enterprise/CreateOrganization.hs -------------------------------------------------------------------------------- /samples/Enterprise/RenameOrganization.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Enterprise/RenameOrganization.hs -------------------------------------------------------------------------------- /samples/Gists/Comments/ShowComment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Gists/Comments/ShowComment.hs -------------------------------------------------------------------------------- /samples/Gists/Comments/ShowComments.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Gists/Comments/ShowComments.hs -------------------------------------------------------------------------------- /samples/Gists/DeleteGist.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Gists/DeleteGist.hs -------------------------------------------------------------------------------- /samples/Gists/ListGists.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Gists/ListGists.hs -------------------------------------------------------------------------------- /samples/Gists/ShowGist.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Gists/ShowGist.hs -------------------------------------------------------------------------------- /samples/Gists/StarGist.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Gists/StarGist.hs -------------------------------------------------------------------------------- /samples/Gists/UnstarGist.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Gists/UnstarGist.hs -------------------------------------------------------------------------------- /samples/GitData/Blobs/GitHashObject.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/GitData/Blobs/GitHashObject.hs -------------------------------------------------------------------------------- /samples/GitData/Commits/GitShow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/GitData/Commits/GitShow.hs -------------------------------------------------------------------------------- /samples/GitData/References/GitCreateReference.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/GitData/References/GitCreateReference.hs -------------------------------------------------------------------------------- /samples/GitData/References/GitLsRemote.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/GitData/References/GitLsRemote.hs -------------------------------------------------------------------------------- /samples/GitData/References/GitLsRemoteTags.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/GitData/References/GitLsRemoteTags.hs -------------------------------------------------------------------------------- /samples/GitData/References/GitLsRemoteWithRef.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/GitData/References/GitLsRemoteWithRef.hs -------------------------------------------------------------------------------- /samples/GitData/Trees/GitLsTree.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/GitData/Trees/GitLsTree.hs -------------------------------------------------------------------------------- /samples/GitData/Trees/GitLsTreeRecursively.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/GitData/Trees/GitLsTreeRecursively.hs -------------------------------------------------------------------------------- /samples/Issues/Comments/ShowComment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/Comments/ShowComment.hs -------------------------------------------------------------------------------- /samples/Issues/Comments/ShowComments.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/Comments/ShowComments.hs -------------------------------------------------------------------------------- /samples/Issues/CreateIssue.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/CreateIssue.hs -------------------------------------------------------------------------------- /samples/Issues/EditIssue.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/EditIssue.hs -------------------------------------------------------------------------------- /samples/Issues/Events/ShowEvent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/Events/ShowEvent.hs -------------------------------------------------------------------------------- /samples/Issues/Events/ShowIssueEvents.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/Events/ShowIssueEvents.hs -------------------------------------------------------------------------------- /samples/Issues/Events/ShowRepoEvents.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/Events/ShowRepoEvents.hs -------------------------------------------------------------------------------- /samples/Issues/IssueReport/Issues.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/IssueReport/Issues.hs -------------------------------------------------------------------------------- /samples/Issues/IssueReport/IssuesEnterprise.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/IssueReport/IssuesEnterprise.hs -------------------------------------------------------------------------------- /samples/Issues/IssueReport/Report.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/IssueReport/Report.hs -------------------------------------------------------------------------------- /samples/Issues/Labels/CreateLabels.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/Labels/CreateLabels.hs -------------------------------------------------------------------------------- /samples/Issues/Labels/ShowIssueLabels.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/Labels/ShowIssueLabels.hs -------------------------------------------------------------------------------- /samples/Issues/Labels/ShowLabel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/Labels/ShowLabel.hs -------------------------------------------------------------------------------- /samples/Issues/Labels/ShowMilestoneLabels.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/Labels/ShowMilestoneLabels.hs -------------------------------------------------------------------------------- /samples/Issues/Labels/ShowRepoLabels.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/Labels/ShowRepoLabels.hs -------------------------------------------------------------------------------- /samples/Issues/Milestones/ShowMilestone.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/Milestones/ShowMilestone.hs -------------------------------------------------------------------------------- /samples/Issues/Milestones/ShowMilestones.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/Milestones/ShowMilestones.hs -------------------------------------------------------------------------------- /samples/Issues/ShowIssue.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/ShowIssue.hs -------------------------------------------------------------------------------- /samples/Issues/ShowRepoIssues.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Issues/ShowRepoIssues.hs -------------------------------------------------------------------------------- /samples/LICENSE: -------------------------------------------------------------------------------- 1 | ../LICENSE -------------------------------------------------------------------------------- /samples/Operational/Operational.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Operational/Operational.hs -------------------------------------------------------------------------------- /samples/Organizations/Members/ShowMembers.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Organizations/Members/ShowMembers.hs -------------------------------------------------------------------------------- /samples/Organizations/ShowPublicOrganization.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Organizations/ShowPublicOrganization.hs -------------------------------------------------------------------------------- /samples/Organizations/ShowPublicOrganizations.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Organizations/ShowPublicOrganizations.hs -------------------------------------------------------------------------------- /samples/Organizations/Teams/CreateTeamFor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Organizations/Teams/CreateTeamFor.hs -------------------------------------------------------------------------------- /samples/Organizations/Teams/ListTeamsForOrganization.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Organizations/Teams/ListTeamsForOrganization.hs -------------------------------------------------------------------------------- /samples/Pulls/Comments/ListComments.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Pulls/Comments/ListComments.hs -------------------------------------------------------------------------------- /samples/Pulls/Comments/ShowComment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Pulls/Comments/ShowComment.hs -------------------------------------------------------------------------------- /samples/Pulls/Diff.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Pulls/Diff.hs -------------------------------------------------------------------------------- /samples/Pulls/IsMergedPull.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Pulls/IsMergedPull.hs -------------------------------------------------------------------------------- /samples/Pulls/ListPulls.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Pulls/ListPulls.hs -------------------------------------------------------------------------------- /samples/Pulls/MergePull.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Pulls/MergePull.hs -------------------------------------------------------------------------------- /samples/Pulls/ShowCommits.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Pulls/ShowCommits.hs -------------------------------------------------------------------------------- /samples/Pulls/ShowPull.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Pulls/ShowPull.hs -------------------------------------------------------------------------------- /samples/Pulls/UpdatePull.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Pulls/UpdatePull.hs -------------------------------------------------------------------------------- /samples/RateLimit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/RateLimit.hs -------------------------------------------------------------------------------- /samples/Repos/Collaborators/IsCollaborator.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Collaborators/IsCollaborator.hs -------------------------------------------------------------------------------- /samples/Repos/Collaborators/ListCollaborators.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Collaborators/ListCollaborators.hs -------------------------------------------------------------------------------- /samples/Repos/Commits/CommitComment.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Commits/CommitComment.hs -------------------------------------------------------------------------------- /samples/Repos/Commits/CommitComments.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Commits/CommitComments.hs -------------------------------------------------------------------------------- /samples/Repos/Commits/GitDiff.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Commits/GitDiff.hs -------------------------------------------------------------------------------- /samples/Repos/Commits/GitLog.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Commits/GitLog.hs -------------------------------------------------------------------------------- /samples/Repos/Commits/GitShow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Commits/GitShow.hs -------------------------------------------------------------------------------- /samples/Repos/Commits/RepoComments.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Commits/RepoComments.hs -------------------------------------------------------------------------------- /samples/Repos/Contents.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Contents.hs -------------------------------------------------------------------------------- /samples/Repos/DeployKeys/CreateDeployKey.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/DeployKeys/CreateDeployKey.hs -------------------------------------------------------------------------------- /samples/Repos/DeployKeys/DeleteDeployKey.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/DeployKeys/DeleteDeployKey.hs -------------------------------------------------------------------------------- /samples/Repos/DeployKeys/ListDeployKeys.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/DeployKeys/ListDeployKeys.hs -------------------------------------------------------------------------------- /samples/Repos/DeployKeys/ShowDeployKey.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/DeployKeys/ShowDeployKey.hs -------------------------------------------------------------------------------- /samples/Repos/Forks/ListForks.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Forks/ListForks.hs -------------------------------------------------------------------------------- /samples/Repos/GetReadme.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/GetReadme.hs -------------------------------------------------------------------------------- /samples/Repos/ListBranches.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/ListBranches.hs -------------------------------------------------------------------------------- /samples/Repos/ListContributors.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/ListContributors.hs -------------------------------------------------------------------------------- /samples/Repos/ListContributorsWithAnonymous.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/ListContributorsWithAnonymous.hs -------------------------------------------------------------------------------- /samples/Repos/ListLanguages.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/ListLanguages.hs -------------------------------------------------------------------------------- /samples/Repos/ListOrgRepos.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/ListOrgRepos.hs -------------------------------------------------------------------------------- /samples/Repos/ListTags.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/ListTags.hs -------------------------------------------------------------------------------- /samples/Repos/ListUserRepos.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/ListUserRepos.hs -------------------------------------------------------------------------------- /samples/Repos/ShowRepo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/ShowRepo.hs -------------------------------------------------------------------------------- /samples/Repos/Starring/ListStarred.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Starring/ListStarred.hs -------------------------------------------------------------------------------- /samples/Repos/Watching/ListWatched.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Watching/ListWatched.hs -------------------------------------------------------------------------------- /samples/Repos/Watching/ListWatchers.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Watching/ListWatchers.hs -------------------------------------------------------------------------------- /samples/Repos/Watching/Unwatch.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Watching/Unwatch.hs -------------------------------------------------------------------------------- /samples/Repos/Webhooks/CreateWebhook.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Webhooks/CreateWebhook.hs -------------------------------------------------------------------------------- /samples/Repos/Webhooks/DeleteWebhook.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Webhooks/DeleteWebhook.hs -------------------------------------------------------------------------------- /samples/Repos/Webhooks/EditWebhook.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Webhooks/EditWebhook.hs -------------------------------------------------------------------------------- /samples/Repos/Webhooks/ListWebhook.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Webhooks/ListWebhook.hs -------------------------------------------------------------------------------- /samples/Repos/Webhooks/ListWebhooks.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Webhooks/ListWebhooks.hs -------------------------------------------------------------------------------- /samples/Repos/Webhooks/PingWebhook.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Webhooks/PingWebhook.hs -------------------------------------------------------------------------------- /samples/Repos/Webhooks/TestPushWebhook.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Repos/Webhooks/TestPushWebhook.hs -------------------------------------------------------------------------------- /samples/Search/SearchCode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Search/SearchCode.hs -------------------------------------------------------------------------------- /samples/Search/SearchIssues.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Search/SearchIssues.hs -------------------------------------------------------------------------------- /samples/Search/SearchRepos.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Search/SearchRepos.hs -------------------------------------------------------------------------------- /samples/Teams/DeleteTeam.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Teams/DeleteTeam.hs -------------------------------------------------------------------------------- /samples/Teams/EditTeam.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Teams/EditTeam.hs -------------------------------------------------------------------------------- /samples/Teams/ListRepos.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Teams/ListRepos.hs -------------------------------------------------------------------------------- /samples/Teams/ListTeamsCurrent.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Teams/ListTeamsCurrent.hs -------------------------------------------------------------------------------- /samples/Teams/Memberships/AddTeamMembershipFor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Teams/Memberships/AddTeamMembershipFor.hs -------------------------------------------------------------------------------- /samples/Teams/Memberships/DeleteTeamMembershipFor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Teams/Memberships/DeleteTeamMembershipFor.hs -------------------------------------------------------------------------------- /samples/Teams/Memberships/TeamMembershipInfoFor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Teams/Memberships/TeamMembershipInfoFor.hs -------------------------------------------------------------------------------- /samples/Teams/Repos/AddOrUpdateTeamRepo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Teams/Repos/AddOrUpdateTeamRepo.hs -------------------------------------------------------------------------------- /samples/Teams/TeamInfoFor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Teams/TeamInfoFor.hs -------------------------------------------------------------------------------- /samples/Users/Emails/ListEmails.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Users/Emails/ListEmails.hs -------------------------------------------------------------------------------- /samples/Users/Followers/Example.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Users/Followers/Example.hs -------------------------------------------------------------------------------- /samples/Users/Followers/ListFollowers.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Users/Followers/ListFollowers.hs -------------------------------------------------------------------------------- /samples/Users/Followers/ListFollowing.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Users/Followers/ListFollowing.hs -------------------------------------------------------------------------------- /samples/Users/PublicSSHKeys/CreatePublicSSHKey.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Users/PublicSSHKeys/CreatePublicSSHKey.hs -------------------------------------------------------------------------------- /samples/Users/PublicSSHKeys/DeletePublicSSHKey.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Users/PublicSSHKeys/DeletePublicSSHKey.hs -------------------------------------------------------------------------------- /samples/Users/PublicSSHKeys/ListPublicSSHKeys.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Users/PublicSSHKeys/ListPublicSSHKeys.hs -------------------------------------------------------------------------------- /samples/Users/PublicSSHKeys/ShowPublicSSHKey.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Users/PublicSSHKeys/ShowPublicSSHKey.hs -------------------------------------------------------------------------------- /samples/Users/ShowUser.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Users/ShowUser.hs -------------------------------------------------------------------------------- /samples/Users/ShowUser2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/Users/ShowUser2.hs -------------------------------------------------------------------------------- /samples/github-samples.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/github-samples.cabal -------------------------------------------------------------------------------- /samples/src/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/samples/src/Common.hs -------------------------------------------------------------------------------- /spec/GitHub/Actions/ArtifactsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/Actions/ArtifactsSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/Actions/CacheSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/Actions/CacheSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/Actions/SecretsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/Actions/SecretsSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/Actions/WorkflowJobSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/Actions/WorkflowJobSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/Actions/WorkflowRunsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/Actions/WorkflowRunsSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/Actions/WorkflowSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/Actions/WorkflowSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/ActivitySpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/ActivitySpec.hs -------------------------------------------------------------------------------- /spec/GitHub/CommitsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/CommitsSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/EventsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/EventsSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/IssuesSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/IssuesSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/OrganizationsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/OrganizationsSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/PublicSSHKeysSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/PublicSSHKeysSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/PullRequestReviewsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/PullRequestReviewsSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/PullRequestsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/PullRequestsSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/RateLimitSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/RateLimitSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/ReleasesSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/ReleasesSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/ReposSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/ReposSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/ReviewDecodeSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/ReviewDecodeSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/SearchSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/SearchSpec.hs -------------------------------------------------------------------------------- /spec/GitHub/UsersSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/spec/GitHub/UsersSpec.hs -------------------------------------------------------------------------------- /spec/Spec.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF hspec-discover #-} 2 | -------------------------------------------------------------------------------- /src/GitHub.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub.hs -------------------------------------------------------------------------------- /src/GitHub/Auth.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Auth.hs -------------------------------------------------------------------------------- /src/GitHub/Data.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Actions/Artifacts.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Actions/Artifacts.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Actions/Cache.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Actions/Cache.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Actions/Common.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Actions/Common.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Actions/Secrets.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Actions/Secrets.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Actions/WorkflowJobs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Actions/WorkflowJobs.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Actions/WorkflowRuns.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Actions/WorkflowRuns.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Actions/Workflows.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Actions/Workflows.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Activities.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Activities.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Comments.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Comments.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Content.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Content.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Definitions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Definitions.hs -------------------------------------------------------------------------------- /src/GitHub/Data/DeployKeys.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/DeployKeys.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Deployments.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Deployments.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Email.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Email.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Enterprise.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Enterprise.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Enterprise/Organizations.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Enterprise/Organizations.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Events.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Events.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Gists.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Gists.hs -------------------------------------------------------------------------------- /src/GitHub/Data/GitData.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/GitData.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Id.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Id.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Invitation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Invitation.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Issues.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Issues.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Milestone.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Milestone.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Name.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Name.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Options.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Options.hs -------------------------------------------------------------------------------- /src/GitHub/Data/PublicSSHKeys.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/PublicSSHKeys.hs -------------------------------------------------------------------------------- /src/GitHub/Data/PullRequests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/PullRequests.hs -------------------------------------------------------------------------------- /src/GitHub/Data/RateLimit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/RateLimit.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Reactions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Reactions.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Releases.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Releases.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Repos.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Repos.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Request.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Request.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Reviews.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Reviews.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Search.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Search.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Statuses.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Statuses.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Teams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Teams.hs -------------------------------------------------------------------------------- /src/GitHub/Data/URL.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/URL.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Webhooks.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Webhooks.hs -------------------------------------------------------------------------------- /src/GitHub/Data/Webhooks/Validate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Data/Webhooks/Validate.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Actions/Artifacts.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Actions/Artifacts.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Actions/Cache.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Actions/Cache.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Actions/Secrets.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Actions/Secrets.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Actions/WorkflowJobs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Actions/WorkflowJobs.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Actions/WorkflowRuns.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Actions/WorkflowRuns.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Actions/Workflows.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Actions/Workflows.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Activity/Events.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Activity/Events.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Activity/Notifications.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Activity/Notifications.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Activity/Starring.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Activity/Starring.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Activity/Watching.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Activity/Watching.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Enterprise/Organizations.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Enterprise/Organizations.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Gists.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Gists.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Gists/Comments.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Gists/Comments.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/GitData/Blobs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/GitData/Blobs.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/GitData/Commits.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/GitData/Commits.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/GitData/References.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/GitData/References.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/GitData/Trees.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/GitData/Trees.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Issues.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Issues.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Issues/Comments.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Issues/Comments.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Issues/Events.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Issues/Events.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Issues/Labels.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Issues/Labels.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Issues/Milestones.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Issues/Milestones.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Organizations.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Organizations.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Organizations/Members.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Organizations/Members.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Organizations/OutsideCollaborators.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Organizations/OutsideCollaborators.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Organizations/Teams.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Organizations/Teams.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/PullRequests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/PullRequests.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/PullRequests/Comments.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/PullRequests/Comments.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/PullRequests/Reviews.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/PullRequests/Reviews.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/RateLimit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/RateLimit.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Reactions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Reactions.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Repos.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Repos.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Repos/Collaborators.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Repos/Collaborators.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Repos/Comments.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Repos/Comments.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Repos/Commits.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Repos/Commits.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Repos/Contents.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Repos/Contents.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Repos/DeployKeys.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Repos/DeployKeys.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Repos/Deployments.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Repos/Deployments.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Repos/Forks.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Repos/Forks.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Repos/Invitations.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Repos/Invitations.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Repos/Releases.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Repos/Releases.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Repos/Statuses.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Repos/Statuses.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Repos/Webhooks.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Repos/Webhooks.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Search.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Search.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Users.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Users.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Users/Emails.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Users/Emails.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Users/Followers.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Users/Followers.hs -------------------------------------------------------------------------------- /src/GitHub/Endpoints/Users/PublicSSHKeys.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Endpoints/Users/PublicSSHKeys.hs -------------------------------------------------------------------------------- /src/GitHub/Enterprise.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Enterprise.hs -------------------------------------------------------------------------------- /src/GitHub/Internal/Prelude.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Internal/Prelude.hs -------------------------------------------------------------------------------- /src/GitHub/Request.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haskell-github/github/HEAD/src/GitHub/Request.hs --------------------------------------------------------------------------------