Conversation
| pub merge_bots: Vec<MergeBot>, | ||
| pub allowed_merge_apps: Vec<MergeBot>, | ||
| #[serde(default, skip_serializing_if = "is_false")] | ||
| pub require_up_to_date_branches: bool, |
There was a problem hiding this comment.
we don't serialize if false, so that merging this change doesn't break triagebot.
There was a problem hiding this comment.
Shouldn't matter anyway, as new fields shouldn't break downstream consumers, they will be ignored.
6ca4ec0 to
86f7b6f
Compare
Dry-run check results |
|
If you are changing the data structures, please make sure that the changes are not going to break serde deserialization (adding a field is fine; removing or renaming a field isn't). If you must do a breaking change to the format, make sure to coordinate it with all the users of the |
| pub merge_bots: Vec<MergeBot>, | ||
| pub allowed_merge_apps: Vec<MergeBot>, | ||
| #[serde(default, skip_serializing_if = "is_false")] | ||
| pub require_up_to_date_branches: bool, |
There was a problem hiding this comment.
Shouldn't matter anyway, as new fields shouldn't break downstream consumers, they will be ignored.
Before merging #2362, we merge this PR and update triagebot.