1
0
Fork 0
mirror of https://github.com/actions/toolkit synced 2025-05-10 00:53:10 +00:00

summary: method to clear file and buffer

This commit is contained in:
Rob Herley 2022-03-02 23:56:30 -05:00
parent d27bf857e6
commit 339dd63bec
No known key found for this signature in database
GPG key ID: D1602042C3543B06
2 changed files with 17 additions and 1 deletions

View file

@ -151,6 +151,15 @@ class MarkdownSummary {
return this.emptyBuffer()
}
/**
* Clears the summary buffer and wipes the summary file
*
* @returns {MarkdownSummary} markdown summary instance
*/
async clear(): Promise<MarkdownSummary> {
return this.emptyBuffer().write(true)
}
/**
* Returns the current summary buffer as a string
*
@ -170,7 +179,7 @@ class MarkdownSummary {
}
/**
* Clears the summary buffer without writing to summary file
* Resets the summary buffer without writing to summary file
*
* @returns {MarkdownSummary} markdown summary instance
*/