Skip to content

Commit

Permalink
support file only
Browse files Browse the repository at this point in the history
  • Loading branch information
ftasbasi committed Nov 26, 2023
1 parent 814a1cd commit 805edf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const core = require('@actions/core');

try {
const target = core.getInput('target');
const processFile = core.getInput('file') === 'true'; // Check if 'file' is set to 'true'
const processFile = core.getInput('file') === 'true' || false; // Set to false by default
const secretsContext = JSON.parse(core.getInput('secrets-context'));
const varsContext = JSON.parse(core.getInput('variables-context'));

Expand Down

0 comments on commit 805edf7

Please sign in to comment.