Fix grouping

This commit is contained in:
Ruben Laban 2021-01-26 12:02:24 +01:00 committed by Ruben Laban
parent 4e7fcc37b4
commit 2c79a825c0
2 changed files with 17146 additions and 17138 deletions

34282
dist/index.js vendored

File diff suppressed because one or more lines are too long

View File

@ -194,6 +194,7 @@ function exportResults(results: FilterResults, format: ExportFormat): void {
const filesValue = serializeExport(files, format)
core.setOutput(`${key}_files`, filesValue)
}
core.endGroup()
}
if (results['changes'] === undefined) {
@ -203,7 +204,6 @@ function exportResults(results: FilterResults, format: ExportFormat): void {
} else {
core.info('Cannot set changes output variable - name already used by filter output')
}
core.endGroup()
}
function serializeExport(files: File[], format: ExportFormat): string {