2025-03-14 21:59:59 -06:00
|
|
|
# gh secret
|
|
|
|
|
|
|
|
|
|
> Manage GitHub secrets.
|
|
|
|
|
> 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:
|
|
|
|
|
|
2025-05-08 12:26:01 -06:00
|
|
|
`gh secret list {{[-o|--org]}} {{organization}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- List secret keys for a specific repository:
|
|
|
|
|
|
2025-05-08 12:26:01 -06:00
|
|
|
`gh secret list {{[-R|--repo]}} {{owner}}/{{repository}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- 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 secret set {{name}} < {{path/to/file}}`
|
|
|
|
|
|
|
|
|
|
- Set an organization secret for specific repositories:
|
|
|
|
|
|
2025-05-08 12:26:01 -06:00
|
|
|
`gh secret set {{name}} {{[-o|--org]}} {{organization}} {{[-r|--repos]}} {{repository1,repository2}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Remove a secret for the current repository:
|
|
|
|
|
|
|
|
|
|
`gh secret remove {{name}}`
|
|
|
|
|
|
|
|
|
|
- Remove a secret for a specific organization:
|
|
|
|
|
|
2025-05-08 12:26:01 -06:00
|
|
|
`gh secret remove {{name}} {{[-o|--org]}} {{organization}}`
|