File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -229,12 +229,11 @@ export const release = async (
229
229
230
230
const tag_name = tag ;
231
231
const name = config . input_name || existingRelease . data . name || tag ;
232
-
233
- let body : string = "" ;
234
- if ( existingRelease . data . body ) body += existingRelease . data . body ;
235
- let workflowBody = releaseBody ( config ) ;
236
- if ( existingRelease . data . body && workflowBody ) body += "\n" ;
237
- if ( workflowBody ) body += workflowBody ;
232
+ // revisit: support a new body-concat-strategy input for accumulating
233
+ // body parts as a release gets updated. some users will likely want this while
234
+ // others won't previously this was duplicating content for most which
235
+ // no one wants
236
+ let body = releaseBody ( config ) || existingRelease . data . body || "" ;
238
237
239
238
const draft =
240
239
config . input_draft !== undefined
You can’t perform that action at this time.
0 commit comments