Cron List

Returns the cron job list. Please note this api requires write access to the repository.

GET /api/repos/{owner}/{repo}/cron

Example Response Body:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
[
  {
    "id": 1,
    "repo_id": 42,
    "name": "nightly",
    "expr": "0 0 1 * * *",
    "branch": "master",
    "next": 1564120128,
    "pref": 1564116480,
    "created": 1564096971,
    "updated": 1564096971
  }
]