Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 60 additions & 1 deletion public/api-schemas.json
Original file line number Diff line number Diff line change
Expand Up @@ -4194,6 +4194,21 @@
"type": "array",
"title": "Matching Conditions",
"description": "List of conditions used to match pull requests that need to be frozen during the scheduled freeze."
},
"exclude_conditions": {
"items": {
"anyOf": [
{
"$ref": "#/components/schemas/MatchingConditionsDict-Input"
},
{
"type": "string"
}
]
},
"type": "array",
"title": "Exclude Conditions",
"description": "List of conditions used to exclude pull requests from the scheduled freeze. Pull requests matching these conditions will not be frozen."
}
},
"type": "object",
Expand Down Expand Up @@ -8640,6 +8655,20 @@
},
"type": "array",
"title": "Matching Conditions"
},
"exclude_conditions": {
"items": {
"anyOf": [
{
"$ref": "#/components/schemas/MatchingConditionsDict-Output"
},
{
"type": "string"
}
]
},
"type": "array",
"title": "Exclude Conditions"
}
},
"type": "object",
Expand All @@ -8648,7 +8677,8 @@
"start",
"end",
"timezone",
"matching_conditions"
"matching_conditions",
"exclude_conditions"
],
"title": "ScheduledFreezeEventLogAttributes"
},
Expand Down Expand Up @@ -8697,6 +8727,20 @@
},
"type": "array",
"title": "Matching Conditions"
},
"exclude_conditions": {
"items": {
"anyOf": [
{
"$ref": "#/components/schemas/MatchingConditionsDict-Output"
},
{
"type": "string"
}
]
},
"type": "array",
"title": "Exclude Conditions"
}
},
"type": "object",
Expand Down Expand Up @@ -8872,6 +8916,21 @@
"type": "array",
"title": "Matching Conditions",
"description": "List of conditions used to match pull requests that need to be frozen during the scheduled freeze. Can only be updated if the scheduled freeze has not yet begun."
},
"exclude_conditions": {
"items": {
"anyOf": [
{
"$ref": "#/components/schemas/MatchingConditionsDict-Input"
},
{
"type": "string"
}
]
},
"type": "array",
"title": "Exclude Conditions",
"description": "List of conditions used to exclude pull requests from the scheduled freeze. Pull requests matching these conditions will not be frozen. Can only be updated if the scheduled freeze has not yet begun."
}
},
"type": "object",
Expand Down