# selected-actions

From **GitHub v3 REST API**.

- Type: `object`

## Properties

### `github_owned_allowed`

- Required: true
- Type: `boolean`

Whether GitHub-owned actions are allowed. For example, this includes the actions in the `actions` organization.

### `patterns_allowed`

- Required: true
- Type: `array`

Specifies a list of string-matching patterns to allow specific action(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`."

## JSON Schema

```json
{"properties":{"github_owned_allowed":{"description":"Whether GitHub-owned actions are allowed. For example, this includes the actions in the `actions` organization.","type":"boolean"},"patterns_allowed":{"description":"Specifies a list of string-matching patterns to allow specific action(s). Wildcards, tags, and SHAs are allowed. For example, `monalisa/octocat@*`, `monalisa/octocat@v2`, `monalisa/*`.\"","items":{"type":"string"},"type":"array"}},"required":["github_owned_allowed","patterns_allowed"],"type":"object"}
```
