Skip to content

Create or update secrets in github repository

License

Notifications You must be signed in to change notification settings

hmanzur/actions-set-secret

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Set Secret Action

Create or edit actions secrets in repository or organizations

Usage

Inputs

name

Required String Secret name.

value

Required String Secret value to store.

token

Required String Repository Access token

repository

Required String Repository or organization to store. Default github.repository context

org

Boolean Indicates the repo is an organization. Default false

visibility

String that configures the access that repositories have to the organization secret. Options are all, private, selected

selected_repository_ids

Outputs

status

Response status code

data

Response json payload

Examples

For personal repo

uses: hmanzur/actions-set-secret@v2.0.0
with:
  name: 'MY_SECRET_NAME'
  value: 'Lorem ipsun dolor simit'
  repository: hmanzur/actions-set-secret
  token: ${{ secrets.REPO_ACCESS_TOKEN }}

For organizations

uses: hmanzur/actions-set-secret@v2.0.0
with:
  name: 'MY_SECRET_NAME'
  value: 'Lorem ipsun dolor simit'
  repository: 'my-org'
  token: ${{ secrets.REPO_ACCESS_TOKEN }}
  org: true
  visibility: 'all'

References

References for repository

References for organization