gitlab-haskell-0.3.2.0: A Haskell library for the GitLab web API
Copyright(c) Rob Stewart Heriot-Watt University 2019
LicenseBSD3
Maintainerrobstewart57@gmail.com
Stabilitystable
Safe HaskellNone
LanguageHaskell2010

GitLab.API.Pipelines

Description

 
Synopsis

Documentation

pipelines Source #

Arguments

:: Project

the project

-> GitLab [Pipeline] 

returns the pipelines for a project.

pipelines' Source #

Arguments

:: Int

the project ID

-> GitLab (Either (Response ByteString) [Pipeline]) 

returns the pipelines for a project given its project ID.

pipelineTestReport Source #

Arguments

:: Project

the project

-> Pipeline

the pipeline

-> GitLab TestReport 

get a pipeline’s test report. Since GitLab 13.0.

pipelineTestReport' Source #

Arguments

:: Int

the project ID

-> Int

the pipeline ID

-> GitLab (Either (Response ByteString) (Maybe TestReport)) 

get a pipeline’s test report. Since GitLab 13.0.