2021-01-16 16:34:13 +00:00
|
|
|
# gh secret
|
|
|
|
|
2021-05-20 21:13:41 +01:00
|
|
|
> Manage GitHub secrets from the command-line.
|
2021-01-16 16:34:13 +00:00
|
|
|
> More information: <https://cli.github.com/manual/gh_secret>.
|
|
|
|
|
|
|
|
- List secret keys for the current repository:
|
|
|
|
|
|
|
|
`gh secret list`
|
|
|
|
|
|
|
|
- List secret keys for a specific organization:
|
|
|
|
|
|
|
|
`gh secret list --org {{organization}}`
|
|
|
|
|
|
|
|
- List secret keys for a specific repository:
|
|
|
|
|
|
|
|
`gh secret list --repo {{owner}}/{{repository}}`
|
|
|
|
|
2021-05-21 11:41:45 +01:00
|
|
|
- Set a secret for the current repository (user will be prompted for the value):
|
2021-01-16 16:34:13 +00:00
|
|
|
|
2021-05-21 11:41:45 +01:00
|
|
|
`gh secret set {{name}}`
|
2021-01-16 16:34:13 +00:00
|
|
|
|
2021-05-21 11:41:45 +01:00
|
|
|
- Set a secret from a file for the current repository:
|
2021-01-16 16:34:13 +00:00
|
|
|
|
2021-05-21 11:41:45 +01:00
|
|
|
`gh secret set {{name}} < {{path/to/file}}`
|
2021-01-16 16:34:13 +00:00
|
|
|
|
|
|
|
- Set an organization secret for specific repositories:
|
|
|
|
|
|
|
|
`gh secret set {{name}} --org {{organization}} --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}} --org {{organization}}`
|