File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ export class GitHub {
237
237
. addRaw ( addLink ( 'Learn more' , 'https://docs.docker.com/go/build-summary/' ) )
238
238
. addRaw ( '</p>' )
239
239
. addRaw ( `<p>` )
240
- . addRaw ( `:arrow_down: ${ addLink ( `<strong>${ opts . uploadRes . filename } </strong>` , artifactRelativeURL ) } (${ Util . formatFileSize ( opts . uploadRes . size ) } )` )
240
+ . addRaw ( `:arrow_down: ${ addLink ( `<strong>${ Util . stringToUnicodeEntities ( opts . uploadRes . filename ) } </strong>` , artifactRelativeURL ) } (${ Util . formatFileSize ( opts . uploadRes . size ) } )` )
241
241
. addBreak ( )
242
242
. addRaw ( `This file includes <strong>${ refsSize } build record${ refsSize > 1 ? 's' : '' } </strong>.` )
243
243
. addRaw ( `</p>` )
@@ -264,7 +264,7 @@ export class GitHub {
264
264
// prettier-ignore
265
265
summaryTableData . push ( [
266
266
{ data : `<code>${ ref . substring ( 0 , 6 ) . toUpperCase ( ) } </code>` } ,
267
- { data : `<strong>${ summary . name } </strong>` } ,
267
+ { data : `<strong>${ Util . stringToUnicodeEntities ( summary . name ) } </strong>` } ,
268
268
{ data : `${ summary . status === 'completed' ? ':white_check_mark:' : summary . status === 'canceled' ? ':no_entry_sign:' : ':x:' } ${ summary . status } ` } ,
269
269
{ data : `${ summary . numCachedSteps > 0 ? Math . round ( ( summary . numCachedSteps / summary . numTotalSteps ) * 100 ) : 0 } %` } ,
270
270
{ data : summary . duration }
You can’t perform that action at this time.
0 commit comments