Skip to content

Commit

Permalink
Add source to debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
nafarlee committed Dec 6, 2023
1 parent 2da05a6 commit 74fbf66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -24737,7 +24737,7 @@ function glob(patterns, source = null) {
}
async function directMatch(patterns, source) {
const matches = await glob(patterns, source);
core.debug(JSON.stringify({ patterns, matches }, null, 2));
core.debug(JSON.stringify({ patterns, matches, source }, null, 2));
core.setOutput("matches", matches);
}
function hoist(rootPatterns, paths) {
Expand Down
2 changes: 1 addition & 1 deletion main.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function glob(patterns, source = null) {

async function directMatch(patterns, source) {
const matches = await glob(patterns, source);
core.debug(JSON.stringify({ patterns, matches }, null, 2));
core.debug(JSON.stringify({ patterns, matches, source }, null, 2));
core.setOutput('matches', matches);
}

Expand Down

0 comments on commit 74fbf66

Please sign in to comment.