actions-workflow-access-to-repository

APIs.ioEngineeringPlatform

Properties

Name Type Description
access_level string 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
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-actions-workflow-access-to-repository-schema.json Raw ↑
{
  "$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"
  ]
}