diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index a156495e0b..779f7692f6 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/api.github.com/api.github.com.2022-11-28.json @@ -648,9 +648,12 @@ "name": "creator_id", "in": "query", "schema": { - "type": "integer" + "type": "array", + "items": { + "type": "integer" + } }, - "description": "Filter tasks by creator user ID" + "description": "Filter tasks by creator user ID. Accepts one or more user IDs." } ], "responses": { @@ -1260,6 +1263,10 @@ "base_ref": { "type": "string", "description": "Base ref for new branch/PR" + }, + "head_ref": { + "type": "string", + "description": "Head ref for existing branch/PR. If provided with `base_ref`, the agent looks up open PR context for `head_ref` targeting `base_ref` and commits to `head_ref` instead of creating a new branch." } } }, @@ -10092,6 +10099,16 @@ "allOf": [ { "$ref": "#/components/schemas/repository" + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -78776,6 +78793,16 @@ "allOf": [ { "$ref": "#/components/schemas/repository" + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -113866,6 +113893,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -299855,7 +299883,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index e5d7e4bb51..dfa6ed4d74 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/api.github.com/api.github.com.2022-11-28.yaml @@ -447,8 +447,10 @@ paths: - name: creator_id in: query schema: - type: integer - description: Filter tasks by creator user ID + type: array + items: + type: integer + description: Filter tasks by creator user ID. Accepts one or more user IDs. responses: '200': description: Tasks retrieved successfully @@ -948,6 +950,11 @@ paths: base_ref: type: string description: Base ref for new branch/PR + head_ref: + type: string + description: Head ref for existing branch/PR. If provided with `base_ref`, + the agent looks up open PR context for `head_ref` targeting `base_ref` + and commits to `head_ref` instead of creating a new branch. examples: default: value: @@ -7457,6 +7464,15 @@ paths: items: allOf: - "$ref": "#/components/schemas/repository" + - type: object + properties: + custom_properties: + type: object + description: The custom properties that were defined for + the repository. The keys are the custom property names, + and the values are the corresponding custom property + values. Present for org repos only. + additionalProperties: true repository_selection: type: string example: selected @@ -57737,6 +57753,15 @@ paths: items: allOf: - "$ref": "#/components/schemas/repository" + - type: object + properties: + custom_properties: + type: object + description: The custom properties that were defined for + the repository. The keys are the custom property names, + and the values are the corresponding custom property + values. Present for org repos only. + additionalProperties: true examples: default: "$ref": "#/components/examples/repository-paginated" @@ -82843,6 +82868,7 @@ components: Business subscription. This property is in public preview and is subject to change. enum: + - read - write organization_copilot_agent_settings: type: string @@ -224798,6 +224824,9 @@ components: forks: 1 open_issues: 1 watchers: 1 + custom_properties: + environment: production + service: web issue-with-repo-items: value: - id: 1 diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.json b/descriptions/api.github.com/api.github.com.2026-03-10.json index 2e21a17c7e..4aed76f767 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions/api.github.com/api.github.com.2026-03-10.json @@ -648,9 +648,12 @@ "name": "creator_id", "in": "query", "schema": { - "type": "integer" + "type": "array", + "items": { + "type": "integer" + } }, - "description": "Filter tasks by creator user ID" + "description": "Filter tasks by creator user ID. Accepts one or more user IDs." } ], "responses": { @@ -1260,6 +1263,10 @@ "base_ref": { "type": "string", "description": "Base ref for new branch/PR" + }, + "head_ref": { + "type": "string", + "description": "Head ref for existing branch/PR. If provided with `base_ref`, the agent looks up open PR context for `head_ref` targeting `base_ref` and commits to `head_ref` instead of creating a new branch." } } }, @@ -10092,6 +10099,16 @@ "allOf": [ { "$ref": "#/components/schemas/repository" + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -78693,6 +78710,16 @@ "allOf": [ { "$ref": "#/components/schemas/repository" + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -113717,6 +113744,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -299110,7 +299138,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.yaml b/descriptions/api.github.com/api.github.com.2026-03-10.yaml index 6cec26ea37..8237df63ae 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions/api.github.com/api.github.com.2026-03-10.yaml @@ -447,8 +447,10 @@ paths: - name: creator_id in: query schema: - type: integer - description: Filter tasks by creator user ID + type: array + items: + type: integer + description: Filter tasks by creator user ID. Accepts one or more user IDs. responses: '200': description: Tasks retrieved successfully @@ -948,6 +950,11 @@ paths: base_ref: type: string description: Base ref for new branch/PR + head_ref: + type: string + description: Head ref for existing branch/PR. If provided with `base_ref`, + the agent looks up open PR context for `head_ref` targeting `base_ref` + and commits to `head_ref` instead of creating a new branch. examples: default: value: @@ -7457,6 +7464,15 @@ paths: items: allOf: - "$ref": "#/components/schemas/repository" + - type: object + properties: + custom_properties: + type: object + description: The custom properties that were defined for + the repository. The keys are the custom property names, + and the values are the corresponding custom property + values. Present for org repos only. + additionalProperties: true repository_selection: type: string example: selected @@ -57665,6 +57681,15 @@ paths: items: allOf: - "$ref": "#/components/schemas/repository" + - type: object + properties: + custom_properties: + type: object + description: The custom properties that were defined for + the repository. The keys are the custom property names, + and the values are the corresponding custom property + values. Present for org repos only. + additionalProperties: true examples: default: "$ref": "#/components/examples/repository-paginated" @@ -82718,6 +82743,7 @@ components: Business subscription. This property is in public preview and is subject to change. enum: + - read - write organization_copilot_agent_settings: type: string @@ -224126,6 +224152,9 @@ components: forks: 1 open_issues: 1 watchers: 1 + custom_properties: + environment: production + service: web issue-with-repo-items: value: - id: 1 diff --git a/descriptions/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index 3990359169..8d52b4b17c 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -648,9 +648,12 @@ "name": "creator_id", "in": "query", "schema": { - "type": "integer" + "type": "array", + "items": { + "type": "integer" + } }, - "description": "Filter tasks by creator user ID" + "description": "Filter tasks by creator user ID. Accepts one or more user IDs." } ], "responses": { @@ -1260,6 +1263,10 @@ "base_ref": { "type": "string", "description": "Base ref for new branch/PR" + }, + "head_ref": { + "type": "string", + "description": "Head ref for existing branch/PR. If provided with `base_ref`, the agent looks up open PR context for `head_ref` targeting `base_ref` and commits to `head_ref` instead of creating a new branch." } } }, @@ -10106,6 +10113,16 @@ "allOf": [ { "$ref": "#/components/schemas/repository" + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -79083,6 +79100,16 @@ "allOf": [ { "$ref": "#/components/schemas/repository" + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -114349,6 +114376,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -301978,7 +302006,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } diff --git a/descriptions/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index afb7029288..c9fb9baf88 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -447,8 +447,10 @@ paths: - name: creator_id in: query schema: - type: integer - description: Filter tasks by creator user ID + type: array + items: + type: integer + description: Filter tasks by creator user ID. Accepts one or more user IDs. responses: '200': description: Tasks retrieved successfully @@ -948,6 +950,11 @@ paths: base_ref: type: string description: Base ref for new branch/PR + head_ref: + type: string + description: Head ref for existing branch/PR. If provided with `base_ref`, + the agent looks up open PR context for `head_ref` targeting `base_ref` + and commits to `head_ref` instead of creating a new branch. examples: default: value: @@ -7465,6 +7472,15 @@ paths: items: allOf: - "$ref": "#/components/schemas/repository" + - type: object + properties: + custom_properties: + type: object + description: The custom properties that were defined for + the repository. The keys are the custom property names, + and the values are the corresponding custom property + values. Present for org repos only. + additionalProperties: true repository_selection: type: string example: selected @@ -57925,6 +57941,15 @@ paths: items: allOf: - "$ref": "#/components/schemas/repository" + - type: object + properties: + custom_properties: + type: object + description: The custom properties that were defined for + the repository. The keys are the custom property names, + and the values are the corresponding custom property + values. Present for org repos only. + additionalProperties: true examples: default: "$ref": "#/components/examples/repository-paginated" @@ -83133,6 +83158,7 @@ components: Business subscription. This property is in public preview and is subject to change. enum: + - read - write organization_copilot_agent_settings: type: string @@ -226194,6 +226220,9 @@ components: forks: 1 open_issues: 1 watchers: 1 + custom_properties: + environment: production + service: web issue-with-repo-items: value: - id: 1 diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 3815816900..61083ef0f1 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -2146,9 +2146,12 @@ "name": "creator_id", "in": "query", "schema": { - "type": "integer" + "type": "array", + "items": { + "type": "integer" + } }, - "description": "Filter tasks by creator user ID" + "description": "Filter tasks by creator user ID. Accepts one or more user IDs." } ], "responses": { @@ -2758,6 +2761,10 @@ "base_ref": { "type": "string", "description": "Base ref for new branch/PR" + }, + "head_ref": { + "type": "string", + "description": "Head ref for existing branch/PR. If provided with `base_ref`, the agent looks up open PR context for `head_ref` targeting `base_ref` and commits to `head_ref` instead of creating a new branch." } } }, @@ -8160,6 +8167,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -9161,6 +9169,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -10016,6 +10025,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -10502,6 +10512,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -12558,6 +12569,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -13610,6 +13622,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -14579,6 +14592,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -15259,6 +15273,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -54356,6 +54371,16 @@ "created_at", "updated_at" ] + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -54487,7 +54512,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } @@ -147530,6 +147559,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -148546,6 +148576,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -382933,6 +382964,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -613650,6 +613682,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -615011,6 +615044,16 @@ "created_at", "updated_at" ] + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -692973,6 +693016,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -885657,6 +885701,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -888279,6 +888324,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -890808,6 +890854,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -893337,6 +893384,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -895998,6 +896046,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -898666,6 +898715,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -902971,6 +903021,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 2d74a30d2e..1a1c6c1d73 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -1222,8 +1222,10 @@ paths: - name: creator_id in: query schema: - type: integer - description: Filter tasks by creator user ID + type: array + items: + type: integer + description: Filter tasks by creator user ID. Accepts one or more user IDs. responses: '200': description: Tasks retrieved successfully @@ -1723,6 +1725,11 @@ paths: base_ref: type: string description: Base ref for new branch/PR + head_ref: + type: string + description: Head ref for existing branch/PR. If provided with `base_ref`, + the agent looks up open PR context for `head_ref` targeting `base_ref` + and commits to `head_ref` instead of creating a new branch. examples: default: value: @@ -4988,6 +4995,7 @@ paths: of an organization with a Copilot Business subscription. This property is in public preview and is subject to change. enum: + - read - write organization_copilot_agent_settings: type: string @@ -18048,6 +18056,15 @@ paths: items: allOf: - *82 + - type: object + properties: + custom_properties: + type: object + description: The custom properties that were defined for + the repository. The keys are the custom property names, + and the values are the corresponding custom property + values. Present for org repos only. + additionalProperties: true repository_selection: type: string example: selected @@ -18169,6 +18186,9 @@ paths: forks: 1 open_issues: 1 watchers: 1 + custom_properties: + environment: production + service: web headers: Link: *70 '403': *29 @@ -109748,6 +109768,15 @@ paths: items: allOf: - *82 + - type: object + properties: + custom_properties: + type: object + description: The custom properties that were defined for + the repository. The keys are the custom property names, + and the values are the corresponding custom property + values. Present for org repos only. + additionalProperties: true examples: default: *153 headers: diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index 3fb5c9fe84..b5c1e782f3 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -2082,9 +2082,12 @@ "name": "creator_id", "in": "query", "schema": { - "type": "integer" + "type": "array", + "items": { + "type": "integer" + } }, - "description": "Filter tasks by creator user ID" + "description": "Filter tasks by creator user ID. Accepts one or more user IDs." } ], "responses": { @@ -2694,6 +2697,10 @@ "base_ref": { "type": "string", "description": "Base ref for new branch/PR" + }, + "head_ref": { + "type": "string", + "description": "Head ref for existing branch/PR. If provided with `base_ref`, the agent looks up open PR context for `head_ref` targeting `base_ref` and commits to `head_ref` instead of creating a new branch." } } }, @@ -8096,6 +8103,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -9097,6 +9105,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -9952,6 +9961,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -10438,6 +10448,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -12477,6 +12488,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -13529,6 +13541,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -14498,6 +14511,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -15178,6 +15192,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -51429,6 +51444,16 @@ "created_at", "updated_at" ] + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -51560,7 +51585,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } @@ -143765,6 +143794,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -144781,6 +144811,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -376188,6 +376219,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -602475,6 +602507,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -603819,6 +603852,16 @@ "created_at", "updated_at" ] + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -678873,6 +678916,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -869524,6 +869568,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -872134,6 +872179,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -874651,6 +874697,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -877168,6 +877215,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -879817,6 +879865,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -882473,6 +882522,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -886754,6 +886804,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index 6b8cd6ed46..95c4c327c7 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -1190,8 +1190,10 @@ paths: - name: creator_id in: query schema: - type: integer - description: Filter tasks by creator user ID + type: array + items: + type: integer + description: Filter tasks by creator user ID. Accepts one or more user IDs. responses: '200': description: Tasks retrieved successfully @@ -1691,6 +1693,11 @@ paths: base_ref: type: string description: Base ref for new branch/PR + head_ref: + type: string + description: Head ref for existing branch/PR. If provided with `base_ref`, + the agent looks up open PR context for `head_ref` targeting `base_ref` + and commits to `head_ref` instead of creating a new branch. examples: default: value: @@ -4956,6 +4963,7 @@ paths: of an organization with a Copilot Business subscription. This property is in public preview and is subject to change. enum: + - read - write organization_copilot_agent_settings: type: string @@ -17744,6 +17752,15 @@ paths: items: allOf: - *82 + - type: object + properties: + custom_properties: + type: object + description: The custom properties that were defined for + the repository. The keys are the custom property names, + and the values are the corresponding custom property + values. Present for org repos only. + additionalProperties: true repository_selection: type: string example: selected @@ -17865,6 +17882,9 @@ paths: forks: 1 open_issues: 1 watchers: 1 + custom_properties: + environment: production + service: web headers: Link: *70 '403': *29 @@ -109355,6 +109375,15 @@ paths: items: allOf: - *82 + - type: object + properties: + custom_properties: + type: object + description: The custom properties that were defined for + the repository. The keys are the custom property names, + and the values are the corresponding custom property + values. Present for org repos only. + additionalProperties: true examples: default: *153 headers: diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index da39584682..440433130b 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -2270,9 +2270,12 @@ "name": "creator_id", "in": "query", "schema": { - "type": "integer" + "type": "array", + "items": { + "type": "integer" + } }, - "description": "Filter tasks by creator user ID" + "description": "Filter tasks by creator user ID. Accepts one or more user IDs." } ], "responses": { @@ -2882,6 +2885,10 @@ "base_ref": { "type": "string", "description": "Base ref for new branch/PR" + }, + "head_ref": { + "type": "string", + "description": "Head ref for existing branch/PR. If provided with `base_ref`, the agent looks up open PR context for `head_ref` targeting `base_ref` and commits to `head_ref` instead of creating a new branch." } } }, @@ -8284,6 +8291,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -9285,6 +9293,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -10154,6 +10163,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -10640,6 +10650,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -12799,6 +12810,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -13851,6 +13863,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -14820,6 +14833,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -15500,6 +15514,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -55310,6 +55325,16 @@ "version": "2026-03-10" } ] + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -55441,7 +55466,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } @@ -150085,6 +150114,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -151101,6 +151131,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -391700,6 +391731,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -629149,6 +629181,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -630613,6 +630646,16 @@ "version": "2026-03-10" } ] + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -713206,6 +713249,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -909299,6 +909343,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -911946,6 +911991,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -914500,6 +914546,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -917054,6 +917101,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -919740,6 +919788,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -922433,6 +922482,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -926788,6 +926838,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index 9e073ecd34..674c3fe30c 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -1279,8 +1279,10 @@ paths: - name: creator_id in: query schema: - type: integer - description: Filter tasks by creator user ID + type: array + items: + type: integer + description: Filter tasks by creator user ID. Accepts one or more user IDs. responses: '200': description: Tasks retrieved successfully @@ -1780,6 +1782,11 @@ paths: base_ref: type: string description: Base ref for new branch/PR + head_ref: + type: string + description: Head ref for existing branch/PR. If provided with `base_ref`, + the agent looks up open PR context for `head_ref` targeting `base_ref` + and commits to `head_ref` instead of creating a new branch. examples: default: value: @@ -5045,6 +5052,7 @@ paths: of an organization with a Copilot Business subscription. This property is in public preview and is subject to change. enum: + - read - write organization_copilot_agent_settings: type: string @@ -18307,6 +18315,15 @@ paths: items: allOf: - *82 + - type: object + properties: + custom_properties: + type: object + description: The custom properties that were defined for + the repository. The keys are the custom property names, + and the values are the corresponding custom property + values. Present for org repos only. + additionalProperties: true repository_selection: type: string example: selected @@ -18428,6 +18445,9 @@ paths: forks: 1 open_issues: 1 watchers: 1 + custom_properties: + environment: production + service: web headers: Link: *70 '403': *29 @@ -110643,6 +110663,15 @@ paths: items: allOf: - *82 + - type: object + properties: + custom_properties: + type: object + description: The custom properties that were defined for + the repository. The keys are the custom property names, + and the values are the corresponding custom property + values. Present for org repos only. + additionalProperties: true examples: default: *153 headers: diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index 037ee73323..d4cad9066c 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -2162,9 +2162,12 @@ "name": "creator_id", "in": "query", "schema": { - "type": "integer" + "type": "array", + "items": { + "type": "integer" + } }, - "description": "Filter tasks by creator user ID" + "description": "Filter tasks by creator user ID. Accepts one or more user IDs." } ], "responses": { @@ -2774,6 +2777,10 @@ "base_ref": { "type": "string", "description": "Base ref for new branch/PR" + }, + "head_ref": { + "type": "string", + "description": "Head ref for existing branch/PR. If provided with `base_ref`, the agent looks up open PR context for `head_ref` targeting `base_ref` and commits to `head_ref` instead of creating a new branch." } } }, @@ -8176,6 +8183,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -9201,6 +9209,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -10080,6 +10089,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -10590,6 +10600,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -12670,6 +12681,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -13746,6 +13758,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -14739,6 +14752,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -15443,6 +15457,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -32019,6 +32034,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -32839,6 +32855,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -33815,6 +33832,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -35182,6 +35200,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -55248,6 +55267,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -103188,6 +103208,16 @@ "created_at", "updated_at" ] + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -103319,7 +103349,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } @@ -200963,6 +200997,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -202003,6 +202038,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -444478,6 +444514,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -686058,6 +686095,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -687443,6 +687481,16 @@ "created_at", "updated_at" ] + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -765489,6 +765537,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -998882,6 +998931,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -1001528,6 +1001578,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -1004081,6 +1004132,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -1006634,6 +1006686,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -1009319,6 +1009372,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -1012011,6 +1012065,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -1016340,6 +1016395,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 51bd1ed89b..a12fd6d74f 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -1230,8 +1230,10 @@ paths: - name: creator_id in: query schema: - type: integer - description: Filter tasks by creator user ID + type: array + items: + type: integer + description: Filter tasks by creator user ID. Accepts one or more user IDs. responses: '200': description: Tasks retrieved successfully @@ -1731,6 +1733,11 @@ paths: base_ref: type: string description: Base ref for new branch/PR + head_ref: + type: string + description: Head ref for existing branch/PR. If provided with `base_ref`, + the agent looks up open PR context for `head_ref` targeting `base_ref` + and commits to `head_ref` instead of creating a new branch. examples: default: value: @@ -4997,6 +5004,7 @@ paths: of an organization with a Copilot Business subscription. This property is in public preview and is subject to change. enum: + - read - write organization_copilot_agent_settings: type: string @@ -33767,6 +33775,15 @@ paths: items: allOf: - *80 + - type: object + properties: + custom_properties: + type: object + description: The custom properties that were defined for + the repository. The keys are the custom property names, + and the values are the corresponding custom property + values. Present for org repos only. + additionalProperties: true repository_selection: type: string example: selected @@ -33888,6 +33905,9 @@ paths: forks: 1 open_issues: 1 watchers: 1 + custom_properties: + environment: production + service: web headers: Link: *47 '403': *29 @@ -125717,6 +125737,15 @@ paths: items: allOf: - *80 + - type: object + properties: + custom_properties: + type: object + description: The custom properties that were defined for + the repository. The keys are the custom property names, + and the values are the corresponding custom property + values. Present for org repos only. + additionalProperties: true examples: default: *285 headers: diff --git a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json index 2599f3b3fc..efd8de47ae 100644 --- a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json @@ -2098,9 +2098,12 @@ "name": "creator_id", "in": "query", "schema": { - "type": "integer" + "type": "array", + "items": { + "type": "integer" + } }, - "description": "Filter tasks by creator user ID" + "description": "Filter tasks by creator user ID. Accepts one or more user IDs." } ], "responses": { @@ -2710,6 +2713,10 @@ "base_ref": { "type": "string", "description": "Base ref for new branch/PR" + }, + "head_ref": { + "type": "string", + "description": "Head ref for existing branch/PR. If provided with `base_ref`, the agent looks up open PR context for `head_ref` targeting `base_ref` and commits to `head_ref` instead of creating a new branch." } } }, @@ -8112,6 +8119,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -9137,6 +9145,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -10016,6 +10025,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -10526,6 +10536,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -12589,6 +12600,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -13665,6 +13677,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -14658,6 +14671,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -15362,6 +15376,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -31904,6 +31919,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -32724,6 +32740,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -33700,6 +33717,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -35067,6 +35085,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -55107,6 +55126,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -100227,6 +100247,16 @@ "created_at", "updated_at" ] + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -100358,7 +100388,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } @@ -196963,6 +196997,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -198003,6 +198038,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -437486,6 +437522,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -674636,6 +674673,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -676004,6 +676042,16 @@ "created_at", "updated_at" ] + }, + { + "type": "object", + "properties": { + "custom_properties": { + "type": "object", + "description": "The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values. Present for org repos only.", + "additionalProperties": true + } + } } ] } @@ -751130,6 +751178,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", "enum": [ + "read", "write" ] }, @@ -982250,6 +982299,7 @@ "type": "string", "description": "The level of permission to grant the access token for managing access to GitHub Copilot for members of an organization with a Copilot Business subscription. This property is in public preview and is subject to change.", {"code":"deadline_exceeded","msg":"operation timed out"}