파이프라인 스케줄 API
이 API를 사용하여 파이프라인 스케줄 과 상호 작용합니다. 모든 파이프라인 스케줄 목록 조회 # 프로젝트의 모든 파이프라인 스케줄을 나열합니다. GET /projects/:id/pipeline_schedules 속성 유형 필수 설명 id integer or string Yes 프로젝트의 ID 또는 URL 인코딩된 경로 . scope string No 파이프라인 스케줄 범위. active , inactive 중 하나여야 합니다. curl --request GET \ --header "PRIVATE-TOKEN: <your_access_token>" \ --url "https://gitlab.example.com/api/v4/projects/29/pipeline_schedules" [ { "id" : 13 , "description" : "Test schedule pipeline" , "ref" : "refs/heads/main" , "cron" : "* * * * *" , "
