PATCH /orgs/{org}/actions/variables/{name}

Updates an organization variable that you can reference in a GitHub Actions workflow.

Authenticated users must have collaborator access to a repository to create, update, or read variables.

OAuth app tokens and personal access tokens (classic) need the admin:org scope to use this endpoint. If the repository is private, the repo scope is also required.

Servers

Path parameters

Name Type Required Description
name String Yes

The name of the variable.

org String Yes

The organization name. The name is not case sensitive.

Request headers

Name Type Required Description
Content-Type String Yes The media type of the request body.

Default value: "application/json"

Request body fields

Name Type Required Description
visibility String No

The type of repositories in the organization that can access the variable. selected means only the repositories specified by selected_repository_ids can access the variable.

Possible values:

  • "private"
  • "selected"
  • "all"
name String No

The name of the variable.

value String No

The value of the variable.

selected_repository_ids[] Array No

An array of repository ids that can access the organization variable. You can only provide a list of repository ids when the visibility is set to selected.

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.