We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b607ca0 commit 40261e4Copy full SHA for 40261e4
hack/tools/release/notes.go
@@ -204,6 +204,13 @@ func run() int {
204
// TODO Turn this into a link (requires knowing the project name + organization)
205
fmt.Printf("Changes since %v\n---\n", commitRange)
206
207
+ fmt.Printf("## :chart_with_upwards_trend: Fun stats\n")
208
+ fmt.Printf("- %d new commits merged\n", len(commits))
209
+ fmt.Printf("- %d breaking changes :warning:\n", len(merges[warning]))
210
+ fmt.Printf("- %d feature additions ✨\n", len(merges[features]))
211
+ fmt.Printf("- %d bugs fixed 🐛\n", len(merges[bugs]))
212
+ fmt.Println()
213
+
214
for _, key := range outputOrder {
215
mergeslice := merges[key]
216
if len(mergeslice) == 0 {
0 commit comments