Defines the level of access that workflows outside of the repository have to actions and reusable workflows within the repository. `none` means the access is only possible from workflows in this repos
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/actions-workflow-access-to-repository",
"title": "actions-workflow-access-to-repository",
"type": "object",
"properties": {
"access_level": {
"type": "string",
"description": "Defines the level of access that workflows outside of the repository have to actions and reusable workflows within the\nrepository.\n\n`none` means the access is only possible from workflows in this repository. `user` level access allows sharing across user owned private repositories only. `organization` level access allows sharing across the organization. `enterprise` level access allows sharing across the enterprise.",
"enum": [
"none",
"user",
"organization",
"enterprise"
]
}
},
"required": [
"access_level"
]
}