mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 15:26:04 +02:00
gh-secret-set: add page (#5996)
This commit is contained in:
parent
a96dddd224
commit
b0cedebfc1
2 changed files with 28 additions and 4 deletions
24
pages/common/gh-secret-set.md
Normal file
24
pages/common/gh-secret-set.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# gh secret set
|
||||
|
||||
> Create or update GitHub secrets from the command line.
|
||||
> More information: <https://cli.github.com/manual/gh_secret_set>.
|
||||
|
||||
- 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 a secret for a specific repository:
|
||||
|
||||
`gh secret set {{name}} --body {{value}} --repo {{owner}}/{{repository}}`
|
||||
|
||||
- Set an organization secret for specific repositories:
|
||||
|
||||
`gh secret set {{name}} --org {{organization}} --repos "{{repository1,repository2,...}}"`
|
||||
|
||||
- Set an organization secret with a specific visibility:
|
||||
|
||||
`gh secret set {{name}} --org {{organization}} --visibility {{all|private|selected}}`
|
|
@ -15,14 +15,14 @@
|
|||
|
||||
`gh secret list --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 secret set {{name}} < {{path/to/file}}`
|
||||
|
||||
- Set a secret for a specific repository:
|
||||
|
||||
`gh secret set {{name}} --body {{value}} --repo {{owner}}/{{repository}}`
|
||||
|
||||
- Set an organization secret for specific repositories:
|
||||
|
||||
`gh secret set {{name}} --org {{organization}} --repos {{repository1,repository2}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue