Secret List

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

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

Example Response Body:

1
2
3
4
5
6
7
8
9
[
  {
    "id": 1,
    "repo_id": 42,
    "name": "docker_username",
    "data": "octocat",
    "pull_request": false
  }
]