diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index 8f99d7acd6..c9da995de0 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/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": { @@ -1262,6 +1265,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." } } }, @@ -10148,6 +10155,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 + } + } } ] } @@ -79148,6 +79165,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 + } + } } ] } @@ -114568,6 +114595,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" ] }, @@ -140979,8 +141007,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "code-scanning-analysis-environment": { "type": "string", @@ -309064,7 +309092,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index 2750d75a08..7450608ddc 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/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 @@ -949,6 +951,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: @@ -7483,6 +7490,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 examples: @@ -57926,6 +57942,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" @@ -83198,6 +83223,7 @@ components: Business subscription. This property is in public preview and is subject to change. enum: + - read - write organization_copilot_agent_settings: type: string @@ -102820,8 +102846,8 @@ components: description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 - maxLength: 40 - pattern: "^[0-9a-fA-F]+$" + maxLength: 64 + pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" code-scanning-analysis-environment: type: string description: Identifies the variable values associated with the environment @@ -228100,6 +228126,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-next/api.github.com/api.github.com.2026-03-10.json b/descriptions-next/api.github.com/api.github.com.2026-03-10.json index aa17411081..9bc668a22e 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions-next/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": { @@ -1262,6 +1265,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." } } }, @@ -10148,6 +10155,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 + } + } } ] } @@ -79059,6 +79076,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 + } + } } ] } @@ -114407,6 +114434,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" ] }, @@ -140339,8 +140367,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "code-scanning-analysis-environment": { "type": "string", @@ -308224,7 +308252,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml index 484490df1e..297c4e971e 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions-next/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 @@ -949,6 +951,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: @@ -7483,6 +7490,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 examples: @@ -57851,6 +57867,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" @@ -83067,6 +83092,7 @@ components: Business subscription. This property is in public preview and is subject to change. enum: + - read - write organization_copilot_agent_settings: type: string @@ -102349,8 +102375,8 @@ components: description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 - maxLength: 40 - pattern: "^[0-9a-fA-F]+$" + maxLength: 64 + pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" code-scanning-analysis-environment: type: string description: Identifies the variable values associated with the environment @@ -227406,6 +227432,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-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index d799dde7a4..917c636063 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/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": { @@ -1262,6 +1265,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." } } }, @@ -10162,6 +10169,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 + } + } } ] } @@ -79455,6 +79472,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 + } + } } ] } @@ -115051,6 +115078,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" ] }, @@ -141990,8 +142018,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "code-scanning-analysis-environment": { "type": "string", @@ -310988,7 +311016,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index b0e527785f..f80ec6ee46 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/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 @@ -949,6 +951,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: @@ -7491,6 +7498,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 examples: @@ -58114,6 +58130,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" @@ -83488,6 +83513,7 @@ components: Business subscription. This property is in public preview and is subject to change. enum: + - read - write organization_copilot_agent_settings: type: string @@ -103524,8 +103550,8 @@ components: description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 - maxLength: 40 - pattern: "^[0-9a-fA-F]+$" + maxLength: 64 + pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" code-scanning-analysis-environment: type: string description: Identifies the variable values associated with the environment @@ -229344,6 +229370,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-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 902d8632bd..e8fa6fa7b3 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -2346,9 +2346,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": { @@ -2960,6 +2963,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." } } }, @@ -8895,6 +8902,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" ] }, @@ -10043,6 +10051,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" ] }, @@ -10964,6 +10973,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" ] }, @@ -11450,6 +11460,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" ] }, @@ -13813,6 +13824,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" ] }, @@ -14993,6 +15005,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" ] }, @@ -16037,6 +16050,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" ] }, @@ -16784,6 +16798,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" ] }, @@ -62270,6 +62285,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 + } + } } ] } @@ -62403,7 +62428,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } @@ -169278,6 +169307,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" ] }, @@ -170441,6 +170471,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" ] }, @@ -358269,8 +358300,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "analysis_key": { "type": "string", @@ -358563,8 +358594,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "analysis_key": { "type": "string", @@ -364778,8 +364809,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "ref": { "type": "string", @@ -443746,6 +443777,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" ] }, @@ -724522,6 +724554,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" ] }, @@ -726171,6 +726204,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 + } + } } ] } @@ -821168,6 +821211,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" ] }, @@ -1052113,6 +1052157,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" ] }, @@ -1055252,6 +1055297,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" ] }, @@ -1058296,6 +1058342,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" ] }, @@ -1061340,6 +1061387,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" ] }, @@ -1064518,6 +1064566,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" ] }, @@ -1067703,6 +1067752,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" ] }, @@ -1072899,6 +1072949,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-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 3124ee6cc8..c3f318cdb6 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -1272,8 +1272,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 @@ -1774,6 +1776,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: @@ -5128,6 +5135,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 @@ -18577,6 +18585,15 @@ paths: items: allOf: - *78 + - 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 examples: @@ -18699,6 +18716,9 @@ paths: forks: 1 open_issues: 1 watchers: 1 + custom_properties: + environment: production + service: web headers: Link: *66 '403': *27 @@ -72450,8 +72470,8 @@ paths: are uploading relates. type: string minLength: 40 - maxLength: 40 - pattern: "^[0-9a-fA-F]+$" + maxLength: 64 + pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" analysis_key: *442 environment: type: string @@ -112082,6 +112102,15 @@ paths: items: allOf: - *78 + - 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: *145 headers: diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index 6e0a77fecd..d445efbdde 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.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": { @@ -2884,6 +2887,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." } } }, @@ -8819,6 +8826,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" ] }, @@ -9967,6 +9975,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" ] }, @@ -10888,6 +10897,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" ] }, @@ -11374,6 +11384,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" ] }, @@ -13718,6 +13729,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" ] }, @@ -14898,6 +14910,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" ] }, @@ -15942,6 +15955,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" ] }, @@ -16689,6 +16703,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" ] }, @@ -58611,6 +58626,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 + } + } } ] } @@ -58744,7 +58769,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } @@ -164536,6 +164565,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" ] }, @@ -165699,6 +165729,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" ] }, @@ -350559,8 +350590,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "analysis_key": { "type": "string", @@ -350853,8 +350884,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "analysis_key": { "type": "string", @@ -357066,8 +357097,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "ref": { "type": "string", @@ -435255,6 +435286,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" ] }, @@ -710289,6 +710321,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" ] }, @@ -711919,6 +711952,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 + } + } } ] } @@ -803200,6 +803243,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" ] }, @@ -1031741,6 +1031785,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" ] }, @@ -1034868,6 +1034913,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" ] }, @@ -1037900,6 +1037946,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" ] }, @@ -1040932,6 +1040979,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" ] }, @@ -1044098,6 +1044146,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" ] }, @@ -1047271,6 +1047320,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" ] }, @@ -1052443,6 +1052493,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-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index 39047d60ed..bd00bc03dd 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -1237,8 +1237,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 @@ -1739,6 +1741,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: @@ -5093,6 +5100,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 @@ -18265,6 +18273,15 @@ paths: items: allOf: - *78 + - 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 examples: @@ -18387,6 +18404,9 @@ paths: forks: 1 open_issues: 1 watchers: 1 + custom_properties: + environment: production + service: web headers: Link: *66 '403': *27 @@ -72003,8 +72023,8 @@ paths: are uploading relates. type: string minLength: 40 - maxLength: 40 - pattern: "^[0-9a-fA-F]+$" + maxLength: 64 + pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" analysis_key: *442 environment: type: string @@ -111691,6 +111711,15 @@ paths: items: allOf: - *78 + - 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: *145 headers: diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index 08c33a567f..deadc88ffb 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -2470,9 +2470,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": { @@ -3084,6 +3087,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." } } }, @@ -9019,6 +9026,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" ] }, @@ -10167,6 +10175,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" ] }, @@ -11102,6 +11111,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" ] }, @@ -11588,6 +11598,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" ] }, @@ -14054,6 +14065,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" ] }, @@ -15234,6 +15246,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" ] }, @@ -16278,6 +16291,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" ] }, @@ -17025,6 +17039,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" ] }, @@ -63224,6 +63239,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 + } + } } ] } @@ -63357,7 +63382,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } @@ -171839,6 +171868,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" ] }, @@ -173002,6 +173032,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" ] }, @@ -366446,8 +366477,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "analysis_key": { "type": "string", @@ -366740,8 +366771,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "analysis_key": { "type": "string", @@ -372980,8 +373011,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "ref": { "type": "string", @@ -453065,6 +453096,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" ] }, @@ -740573,6 +740605,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" ] }, @@ -742325,6 +742358,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 + } + } } ] } @@ -842493,6 +842536,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" ] }, @@ -1076847,6 +1076891,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" ] }, @@ -1080011,6 +1080056,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" ] }, @@ -1083080,6 +1083126,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" ] }, @@ -1086149,6 +1086196,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" ] }, @@ -1089352,6 +1089400,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" ] }, @@ -1092562,6 +1092611,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" ] }, @@ -1097808,6 +1097858,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-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index 43dd912b8b..00521bb028 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -1329,8 +1329,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 @@ -1831,6 +1833,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: @@ -5185,6 +5192,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 @@ -18836,6 +18844,15 @@ paths: items: allOf: - *78 + - 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 examples: @@ -18958,6 +18975,9 @@ paths: forks: 1 open_issues: 1 watchers: 1 + custom_properties: + environment: production + service: web headers: Link: *66 '403': *27 @@ -73089,8 +73109,8 @@ paths: are uploading relates. type: string minLength: 40 - maxLength: 40 - pattern: "^[0-9a-fA-F]+$" + maxLength: 64 + pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" analysis_key: *442 environment: type: string @@ -112974,6 +112994,15 @@ paths: items: allOf: - *78 + - 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: *145 headers: diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index 22bb4cb894..9d65f9336a 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -2362,9 +2362,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": { @@ -2976,6 +2979,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." } } }, @@ -8911,6 +8918,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" ] }, @@ -10083,6 +10091,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" ] }, @@ -11028,6 +11037,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" ] }, @@ -11538,6 +11548,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" ] }, @@ -13925,6 +13936,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" ] }, @@ -15129,6 +15141,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" ] }, @@ -16197,6 +16210,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" ] }, @@ -16968,6 +16982,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" ] }, @@ -34945,6 +34960,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" ] }, @@ -35848,6 +35864,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" ] }, @@ -36971,6 +36988,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" ] }, @@ -38491,6 +38509,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" ] }, @@ -60135,6 +60154,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" ] }, @@ -114663,6 +114683,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 + } + } } ] } @@ -114796,7 +114826,11 @@ }, "forks": 1, "open_issues": 1, - "watchers": 1 + "watchers": 1, + "custom_properties": { + "environment": "production", + "service": "web" + } } ] } @@ -226784,6 +226818,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" ] }, @@ -227971,6 +228006,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" ] }, @@ -420225,8 +420261,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "analysis_key": { "type": "string", @@ -420519,8 +420555,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "analysis_key": { "type": "string", @@ -426734,8 +426770,8 @@ "description": "The SHA of the commit to which the analysis you are uploading relates.", "type": "string", "minLength": 40, - "maxLength": 40, - "pattern": "^[0-9a-fA-F]+$" + "maxLength": 64, + "pattern": "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" }, "ref": { "type": "string", @@ -509756,6 +509792,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" ] }, @@ -802873,6 +802910,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" ] }, @@ -804546,6 +804584,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 + } + } } ] } @@ -899627,6 +899675,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" ] }, @@ -1178953,6 +1179002,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" ] }, @@ -1182116,6 +1182166,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" ] }, @@ -1185184,6 +1185235,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" ] }, @@ -1188252,6 +1188304,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" ] }, @@ -1191454,6 +1191507,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" ] }, @@ -1194663,6 +1194717,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" ] }, @@ -1199883,6 +1199938,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-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 8659aea571..f612fa55b5 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -1280,8 +1280,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 @@ -1782,6 +1784,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: @@ -5137,6 +5144,7 @@ paths: of an organization with a Copilot Business subscription. This property is in public preview and is subject to change. enum: + -{"code":"deadline_exceeded","msg":"operation timed out"}