Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
The actions API as documented at https://docs.github.com/en/rest/reference/actions.
Synopsis
- cacheUsageOrganizationR :: Name Organization -> GenRequest 'MtJSON 'RA OrganizationCacheUsage
- cacheUsageByRepositoryR :: Name Organization -> FetchCount -> GenRequest 'MtJSON 'RA (WithTotalCount RepositoryCacheUsage)
- cacheUsageR :: Name Owner -> Name Repo -> Request k RepositoryCacheUsage
- cachesForRepoR :: Name Owner -> Name Repo -> CacheMod -> FetchCount -> GenRequest 'MtJSON 'RA (WithTotalCount Cache)
- deleteCacheR :: Name Owner -> Name Repo -> Id Cache -> GenRequest 'MtUnit 'RW ()
- module GitHub.Data
Documentation
cacheUsageOrganizationR :: Name Organization -> GenRequest 'MtJSON 'RA OrganizationCacheUsage Source #
Get Actions cache usage for the organization. See https://docs.github.com/en/rest/actions/cache#get-github-actions-cache-usage-for-an-organization
cacheUsageByRepositoryR :: Name Organization -> FetchCount -> GenRequest 'MtJSON 'RA (WithTotalCount RepositoryCacheUsage) Source #
List repositories with GitHub Actions cache usage for an organization. See https://docs.github.com/en/rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization
cacheUsageR :: Name Owner -> Name Repo -> Request k RepositoryCacheUsage Source #
Get GitHub Actions cache usage for a repository. See https://docs.github.com/en/rest/actions/cache#get-github-actions-cache-usage-for-a-repository
cachesForRepoR :: Name Owner -> Name Repo -> CacheMod -> FetchCount -> GenRequest 'MtJSON 'RA (WithTotalCount Cache) Source #
List the GitHub Actions caches for a repository. See https://docs.github.com/en/rest/actions/cache#list-github-actions-caches-for-a-repository
deleteCacheR :: Name Owner -> Name Repo -> Id Cache -> GenRequest 'MtUnit 'RW () Source #
Delete GitHub Actions cache for a repository. See https://docs.github.com/en/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id
module GitHub.Data