v50

latestOpenAPI 3.0.3MITraw.githubusercontent.com2024-03-2585861610.1 MB
actions

Get an organization public key

Gets your public key, which you need to encrypt secrets. You need to encrypt a secret before you can create or update secrets.

The authenticated user must have collaborator access to a repository to create, update, or read secrets.

OAuth tokens and personal access tokens (classic) need theadmin:org scope to use this endpoint. If the repository is private, OAuth tokens and personal access tokens (classic) need the repo scope to use this endpoint.

get/orgs/{org}/actions/secrets/public-key

Path parameters

orgstring required

The organization name. The name is not case sensitive.

Response

Response

key_idstring required

The identifier for the key.

keystring required

The Base64 encoded public key.

idinteger
urlstring
titlestring
created_atstring

Example response

{
  "key_id": "1234567",
  "key": "hBT5WZEj8ZoOv6TYJsfWq7MxTEQopZO5/IT3ZCVQPzs=",
  "id": 2,
  "url": "https://api.github.com/user/keys/2",
  "title": "ssh-rsa AAAAB3NzaC1yc2EAAA",
  "created_at": "2011-01-26T19:01:12Z"
}