changedInput schema / properties / assignees / anyOf
Previous value: -[
- {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "items": {
+ "maxLength": 39,
+ "minLength": 1,
+ "pattern": "^(?:@me|[A-Za-z0-9](?:[A-Za-z0-9-]{0,38}))$",
+ "type": "string"
+ },
+ "maxItems": 10,
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / assignees / description
Added value: +"Optional GitHub user logins or the @me selector to assign."
addedInput schema / properties / base / description
Added value: +"Base branch name."
addedInput schema / properties / base / maxLength
Added value: +1024
addedInput schema / properties / base / minLength
Added value: +1
addedInput schema / properties / body / description
Added value: +"Markdown pull request body."
addedInput schema / properties / body / maxLength
Added value: +65536
addedInput schema / properties / head / description
Added value: +"Head branch or owner:branch selector."
addedInput schema / properties / head / maxLength
Added value: +1024
addedInput schema / properties / head / minLength
Added value: +1
changedInput schema / properties / labels / anyOf
Previous value: -[
- {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "items": {
+ "maxLength": 100,
+ "minLength": 1,
+ "type": "string"
+ },
+ "maxItems": 100,
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / labels / description
Added value: +"Optional labels to apply."
addedInput schema / properties / owner / description
Added value: +"GitHub repository owner or organization login."
addedInput schema / properties / owner / maxLength
Added value: +39
addedInput schema / properties / owner / minLength
Added value: +1
addedInput schema / properties / owner / pattern
Added value: +"^[A-Za-z0-9](?:[A-Za-z0-9-]{0,38})$"
addedInput schema / properties / repo / description
Added value: +"GitHub repository name without the owner prefix."
addedInput schema / properties / repo / maxLength
Added value: +100
addedInput schema / properties / repo / minLength
Added value: +1
addedInput schema / properties / repo / pattern
Added value: +"^[A-Za-z0-9_.-]{1,100}$"
changedInput schema / properties / review_users / anyOf
Previous value: -[
- {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "items": {
+ "maxLength": 39,
+ "minLength": 1,
+ "pattern": "^[A-Za-z0-9](?:[A-Za-z0-9-]{0,38})$",
+ "type": "string"
+ },
+ "maxItems": 100,
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / review_users / description
Added value: +"Optional GitHub user logins to request for review."
addedInput schema / properties / title / description
Added value: +"Pull request title."
addedInput schema / properties / title / maxLength
Added value: +256
addedInput schema / properties / title / minLength
Added value: +1
changedOutput schema / description
Previous value: -"Result of creating a pull request."New value: +"Authoritative outcome of one pull-request creation attempt."
addedOutput schema / properties / precondition_checked
Added value: +{
+ "title": "Precondition Checked",
+ "type": "boolean"
+}
addedOutput schema / properties / readback_completed
Added value: +{
+ "title": "Readback Completed",
+ "type": "boolean"
+}
addedOutput schema / properties / request_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Request Id"
+}
addedOutput schema / properties / state_matches_requested
Added value: +{
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "State Matches Requested"
+}
addedOutput schema / properties / warning
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Warning"
+}
addedOutput schema / properties / write_completed
Added value: +{
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "title": "Write Completed"
+}
changedOutput schema / required
Previous value: -[
- "number",
- "title",
- "url",
- "message"
-]New value: +[
+ "precondition_checked",
+ "write_completed",
+ "readback_completed",
+ "state_matches_requested",
+ "number",
+ "title",
+ "url",
+ "message"
+]