Skip to content

Commit 8627a90

Browse files
committed
Fix: Output filenames
1 parent 6f9942d commit 8627a90

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29232,10 +29232,10 @@ async function run () {
2923229232
.filter(({ status }) => excludeStatuses.length === 0 || !excludeStatuses.includes(status))
2923329233
.map(({ filename }) => filename)
2923429234

29235-
core.setOutput('changed-filenames', changedFilenames)
29235+
core.setOutput('filenames', changedFilenames)
2923629236
core.setOutput('json', compare)
2923729237

29238-
core.group('Output - changed-filenames', () => core.info(util.inspect(changedFilenames)))
29238+
core.group('Output - filenames', () => core.info(util.inspect(changedFilenames)))
2923929239
core.group('Output - json', () => core.info(util.inspect(compare)))
2924029240
}
2924129241

src/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ async function run () {
4141
.filter(({ status }) => excludeStatuses.length === 0 || !excludeStatuses.includes(status))
4242
.map(({ filename }) => filename)
4343

44-
core.setOutput('changed-filenames', changedFilenames)
44+
core.setOutput('filenames', changedFilenames)
4545
core.setOutput('json', compare)
4646

47-
core.group('Output - changed-filenames', () => core.info(util.inspect(changedFilenames)))
47+
core.group('Output - filenames', () => core.info(util.inspect(changedFilenames)))
4848
core.group('Output - json', () => core.info(util.inspect(compare)))
4949
}
5050

0 commit comments

Comments
 (0)