Skip to content

Latest commit

 

History

History
65 lines (47 loc) · 1.8 KB

listEnvironmentSecrets.md

File metadata and controls

65 lines (47 loc) · 1.8 KB
name example route scope type
List environment secrets
octokit.rest.actions.listEnvironmentSecrets({ owner, repo, environment_name })
GET /repos/{owner}/{repo}/environments/{environment_name}/secrets
actions
API method

List environment secrets

Lists all secrets available in an environment without revealing their encrypted values.

Authenticated users must have collaborator access to a repository to create, update, or read secrets.

OAuth app tokens and personal access tokens (classic) need the repo scope to use this endpoint.

octokit.rest.actions.listEnvironmentSecrets({
  owner,
  repo,
  environment_name,
});

Parameters

name required description
owneryes

The account owner of the repository. The name is not case sensitive.

repoyes

The name of the repository without the .git extension. The name is not case sensitive.

environment_nameyes

The name of the environment. The name must be URL encoded. For example, any slashes in the name must be replaced with %2F.

per_pageno

The number of results per page (max 100). For more information, see "Using pagination in the REST API."

pageno

The page number of the results to fetch. For more information, see "Using pagination in the REST API."

See also: GitHub Developer Guide documentation.