HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

gh secret — Manage GitHub secrets. More information: <https://cli.github.com/manual/gh_secret>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
gh secretcommandgithubclimanageinformationmoresecrets

Problem

How to use the gh secret command: Manage GitHub secrets. More information: <https://cli.github.com/manual/gh_secret>.

Solution

gh secret — Manage GitHub secrets. More information: <https://cli.github.com/manual/gh_secret>.

List secret keys for the current repository:
gh secret {{[ls|list]}}


List secret keys for a specific organization:
gh secret {{[ls|list]}} {{[-o|--org]}} {{organization}}


List secret keys for a specific repository:
gh secret {{[ls|list]}} {{[-R|--repo]}} {{owner}}/{{repository}}


Set a secret for the current repository (user will be prompted for the value):
gh secret set {{name}}


Set a secret from a file for the current repository:
gh < {{path/to/file}} secret set {{name}}


Set an organization secret for specific repositories:
gh secret set {{name}} {{[-o|--org]}} {{organization}} {{[-r|--repos]}} {{repository1,repository2}}


Remove a secret for the current repository:
gh secret remove {{name}}


Remove a secret for a specific organization:
gh secret remove {{name}} {{[-o|--org]}} {{organization}}

Code Snippets

List secret keys for the current repository

gh secret {{[ls|list]}}

List secret keys for a specific organization

gh secret {{[ls|list]}} {{[-o|--org]}} {{organization}}

List secret keys for a specific repository

gh secret {{[ls|list]}} {{[-R|--repo]}} {{owner}}/{{repository}}

Set a secret for the current repository (user will be prompted for the value)

gh secret set {{name}}

Set a secret from a file for the current repository

gh < {{path/to/file}} secret set {{name}}

Context

tldr-pages: common/gh secret

Revisions (0)

No revisions yet.