@@ -77,14 +77,14 @@ func parsePatchSchedule(patchSchedule PatchSchedule) string {
77
77
continue
78
78
}
79
79
80
- table .Append ([]string {
80
+ _ = table .Append ([]string {
81
81
targetDate .Format (refDateMonthly ),
82
82
strings .TrimSpace (upcoming .CherryPickDeadline ),
83
83
strings .TrimSpace (upcoming .TargetDate ),
84
84
})
85
85
}
86
86
87
- table .Render ()
87
+ _ = table .Render ()
88
88
89
89
output = append (output , tableString .String ())
90
90
}
@@ -130,14 +130,14 @@ func parsePatchSchedule(patchSchedule PatchSchedule) string {
130
130
131
131
// Check if the next patch release is in the Previous Patch list, if yes dont read in the output
132
132
if ! patchReleaseInPreviousList (releaseSchedule .Next .Release , releaseSchedule .PreviousPatches ) {
133
- table .Append ([]string {strings .TrimSpace (releaseSchedule .Next .Release ), strings .TrimSpace (releaseSchedule .Next .CherryPickDeadline ), strings .TrimSpace (releaseSchedule .Next .TargetDate ), "" })
133
+ _ = table .Append ([]string {strings .TrimSpace (releaseSchedule .Next .Release ), strings .TrimSpace (releaseSchedule .Next .CherryPickDeadline ), strings .TrimSpace (releaseSchedule .Next .TargetDate ), "" })
134
134
}
135
135
136
136
for _ , previous := range releaseSchedule .PreviousPatches {
137
- table .Append ([]string {strings .TrimSpace (previous .Release ), strings .TrimSpace (previous .CherryPickDeadline ), strings .TrimSpace (previous .TargetDate ), strings .TrimSpace (previous .Note )})
137
+ _ = table .Append ([]string {strings .TrimSpace (previous .Release ), strings .TrimSpace (previous .CherryPickDeadline ), strings .TrimSpace (previous .TargetDate ), strings .TrimSpace (previous .Note )})
138
138
}
139
139
140
- table .Render ()
140
+ _ = table .Render ()
141
141
142
142
output = append (output , tableString .String ())
143
143
}
@@ -204,10 +204,10 @@ func parseReleaseSchedule(releaseSchedule ReleaseSchedule) string {
204
204
)
205
205
206
206
for _ , timeline := range releaseSchedule .Timeline {
207
- table .Append ([]string {strings .TrimSpace (timeline .What ), strings .TrimSpace (timeline .Who ), strings .TrimSpace (timeline .When ), strings .TrimSpace (timeline .Week ), strings .TrimSpace (timeline .CISignal ), "" })
207
+ _ = table .Append ([]string {strings .TrimSpace (timeline .What ), strings .TrimSpace (timeline .Who ), strings .TrimSpace (timeline .When ), strings .TrimSpace (timeline .Week ), strings .TrimSpace (timeline .CISignal ), "" })
208
208
}
209
209
210
- table .Render ()
210
+ _ = table .Render ()
211
211
212
212
relSched .TimelineOutput = tableString .String ()
213
213
}
0 commit comments