1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 15:02:09 +02:00
tldr/pages/common/gh-secret-set.md
Lena 7ca1069d76
pages/*: reword descriptions without using "a CLI for" etc. (#10437)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-07-16 19:23:40 +02:00

739 B

gh secret set

Create or update GitHub secrets. 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}}