Skip to content

Add missing milestone data to db/docs files

Manoj M J requested to merge mmj-add-milestones into master

What does this MR do and why?

Some minor housekeeping: While working on #424990 (closed), I was gathering data around the present state of db/docs files, when I came across the fact that milestone can be empty for some files, which I got by running

Dir.glob("db/docs/*.yml").map do |file|
  YAML.load_file(file)
end.select { |data| data["milestone"] == nil }

on the console. This MR adds the right milestone to the files that are missing it.

Screenshots or screen recordings

Screenshots are required for UI changes, and strongly recommended for all other merge requests.

Before After

How to set up and validate locally

Numbered steps to set up and validate the change are strongly suggested.

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Edited by Manoj M J

Merge request reports