File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -8870,8 +8870,10 @@ async function setOutputs(files) {
8870
8870
pathsChanged.push(file.filename.split("/").slice(0, -1).join("/"))
8871
8871
filesChanged.push(file.filename)
8872
8872
})
8873
- core.setOutput("paths_changed", JSON.stringify([...new Set(pathsChanged)]))
8874
- core.setOutput("file_changed", JSON.stringify(filesChanged))
8873
+ core.setOutput("paths_list", JSON.stringify([...new Set(pathsChanged)]))
8874
+ core.setOutput("file_list", JSON.stringify([...new Set(filesChanged)]))
8875
+ core.setOutput("paths_str", [...new Set(pathsChanged)].join())
8876
+ core.setOutput("file_str", [...new Set(filesChanged)].join())
8875
8877
}
8876
8878
8877
8879
const main = async () => {
@@ -8895,7 +8897,7 @@ const main = async () => {
8895
8897
})
8896
8898
8897
8899
if (filteredFiles.length === 0) {
8898
- console.log("No matchs found.")
8900
+ console.log("No matches found.")
8899
8901
console.log(`Raw input: ${path}`)
8900
8902
console.log(`Regex: ${regExp.toString()}`)
8901
8903
}
You can’t perform that action at this time.
0 commit comments