changedInput schema / properties / base / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "maxLength": 1024,
+ "minLength": 1,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / base / description
Added value: +"Existing branch-name base resolved to an exact commit immediately before creation; full commit SHAs are rejected."
addedInput schema / properties / issue_number / description
Added value: +"Positive issue number to link to the new development branch."
addedInput schema / properties / issue_number / minimum
Added value: +1
addedInput schema / properties / name / description
Added value: +"New development branch name."
addedInput schema / properties / name / maxLength
Added value: +1024
addedInput schema / properties / name / minLength
Added value: +1
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}$"
changedOutput schema / description
Previous value: -"Result of creating a branch."New value: +"Result of creating and linking one issue development branch."
addedOutput schema / properties / base_sha
Added value: +{
+ "pattern": "^[0-9a-f]{40}$",
+ "title": "Base Sha",
+ "type": "string"
+}
addedOutput schema / properties / created
Added value: +{
+ "title": "Created",
+ "type": "boolean"
+}
addedOutput schema / properties / linked_branch_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Linked Branch Id"
+}
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 / ref
Added value: +{
+ "title": "Ref",
+ "type": "string"
+}
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: -[
- "name",
- "message"
-]New value: +[
+ "precondition_checked",
+ "write_completed",
+ "readback_completed",
+ "state_matches_requested",
+ "name",
+ "ref",
+ "base_sha",
+ "created",
+ "message"
+]