Safe Haskell | None |
---|---|
Language | Haskell2010 |
GitHub.Endpoints.Actions.Artifacts
Description
The actions API as documented at https://docs.github.com/en/rest/reference/actions.
Synopsis
- artifactsForR :: Name Owner -> Name Repo -> ArtifactMod -> FetchCount -> Request 'RA (WithTotalCount Artifact)
- artifactR :: Name Owner -> Name Repo -> Id Artifact -> Request 'RA Artifact
- deleteArtifactR :: Name Owner -> Name Repo -> Id Comment -> GenRequest ('MtUnit :: MediaType Type) 'RW ()
- downloadArtifactR :: Name Owner -> Name Repo -> Id Artifact -> GenRequest ('MtRedirect :: MediaType Type) 'RW URI
- artifactsForWorkflowRunR :: Name Owner -> Name Repo -> Id WorkflowRun -> FetchCount -> Request 'RA (WithTotalCount Artifact)
- module GitHub.Data
Documentation
artifactsForR :: Name Owner -> Name Repo -> ArtifactMod -> FetchCount -> Request 'RA (WithTotalCount Artifact) Source #
List artifacts for repository. See https://docs.github.com/en/rest/reference/actions#list-artifacts-for-a-repository
deleteArtifactR :: Name Owner -> Name Repo -> Id Comment -> GenRequest ('MtUnit :: MediaType Type) 'RW () Source #
downloadArtifactR :: Name Owner -> Name Repo -> Id Artifact -> GenRequest ('MtRedirect :: MediaType Type) 'RW URI Source #
artifactsForWorkflowRunR :: Name Owner -> Name Repo -> Id WorkflowRun -> FetchCount -> Request 'RA (WithTotalCount Artifact) Source #
List artifacts for a workflow run. See https://docs.github.com/en/rest/reference/actions#list-workflow-run-artifacts
module GitHub.Data