Properties
| Name | Type | Description |
|---|---|---|
| github_owned_allowed | boolean | Whether GitHub-owned actions are allowed. For example, this includes the actions in the `actions` organization. |
| patterns_allowed | 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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/selected-actions",
"title": "selected-actions",
"type": "object",
"properties": {
"github_owned_allowed": {
"type": "boolean",
"description": "Whether GitHub-owned actions are allowed. For example, this includes the actions in the `actions` organization."
},
"patterns_allowed": {
"type": "array",
"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"
}
}
},
"required": [
"github_owned_allowed",
"patterns_allowed"
]
}