You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 28, 2025. It is now read-only.
msg.push_str("WARNING: there have been changes to x.py since you last updated.\n");
123
+
msg.push_str("To see more detail about these changes, visit the following PRs:\n");
124
+
125
+
for link in change_links {
126
+
msg.push_str(&format!(" - {link}\n"));
127
+
}
128
+
129
+
msg.push_str("WARNING: there have been changes to x.py since you last updated.\n");
130
+
131
+
msg.push_str("note: to silence this warning, ");
132
+
msg.push_str(&format!(
133
+
"update `config.toml` to use `change-id = {latest_config_id}` instead"
134
+
));
135
+
}
136
136
}else{
137
137
msg.push_str("WARNING: The `change-id` is missing in the `config.toml`. This means that you will not be able to track the major changes made to the bootstrap configurations.\n");
0 commit comments