Skip to content

Commit

Permalink
action.yml: debug by runner
Browse files Browse the repository at this point in the history
  • Loading branch information
thypon committed Dec 22, 2023
1 parent ce03e90 commit d713e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ runs:
// delete if empty string in inputs value
Object.keys(inputs).forEach(key => inputs[key] === '' && delete inputs[key]);
var debug = process.env.DEBUG == 'true';
var debug = process.env.DEBUG == 'true' || context.runner.debug;
if (debug) console.log("Initializing puLL-Merge");
let config = await getConfig({owner: context.repo.owner, repo: context.repo.repo, path: '.github/pull-merge.json', debug, github});
Expand Down

0 comments on commit d713e1f

Please sign in to comment.