Skip to content
Merged
134 changes: 67 additions & 67 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@types/mdast": "^4.0.4",
"@types/node": "^25.0.3",
"@types/viz.js": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.48.1",
"astro": "^5.16.6",
"astro-auto-import": "^0.4.5",
Expand Down
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
2 changes: 1 addition & 1 deletion src/content/changelog/2025-12-24-add-status-comments.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Add `**status_comments**`"
title: "Add **`status_comments`**"
date: 2025-12-24
tags:
- Merge Queue
Expand Down