From a1c2f5b962232e4ed2828580d84d272bc7d2ff6a Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Tue, 21 Jul 2020 17:16:49 -0500 Subject: [PATCH] Add reno configuration settings This adds additional reno config to tell it to scan back to the earliest versions when we started using reno to make sure we include all notes in the output. It also says not to ignore null merges so that we can merge temporary branches back into the master branch, and reno will still proceed past the null merge. Change-Id: I75051cd492124441befc0dff5b33ccf0442b7754 Signed-off-by: Sean McGinnis --- reno.yaml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 reno.yaml diff --git a/reno.yaml b/reno.yaml new file mode 100644 index 0000000000..14b0d2af21 --- /dev/null +++ b/reno.yaml @@ -0,0 +1,4 @@ +--- +earliest_version: 3.0.0 +stop_at_branch_base: false +ignore_null_merges: false