Skip to content

Commit

Permalink
chore: result of yarn run v1.22.21
Browse files Browse the repository at this point in the history
$ ncc build index.js --out dist --license licenses.txt
ncc: Version 0.33.4
ncc: Compiling file index.js into CJS
 36kB  dist/licenses.txt
900kB  dist/index.js
936kB  [723ms] - ncc 0.33.4
Done in 0.99s.
  • Loading branch information
jburns24 committed Sep 3, 2024
1 parent 69cdf1c commit ef2fd8c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12829,6 +12829,7 @@ const commentFooter = core.getMultilineInput('comment-footer');
const quietMode = core.getBooleanInput('quiet');
const includeLinkToWorkflow = core.getBooleanInput('include-workflow-link');
const hidePreviousComments = core.getBooleanInput('hide-previous-comments');
const logChangedResources = core.getBooleanInput('log-changed-resources');

const workflowLink = includeLinkToWorkflow ? `
[Workflow: ${context.workflow}](${context.serverUrl}/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId })
Expand Down Expand Up @@ -12871,7 +12872,9 @@ const output = () => {
return resource.change.actions != ["no-op"];
})

console.log("changed_resources", changed_resources)
if (logChangedResources) {
console.log("changed_resources", changed_resources)
}
if (Array.isArray(resource_changes) && resource_changes.length > 0) {
const resources_to_create = [],
resources_to_update = [],
Expand Down Expand Up @@ -12906,7 +12909,7 @@ const output = () => {
}
}
// the body must be indented at the start otherwise
// there will be formatting error when comment is
// there will be formatting error when comment is
// showed on GitHub
body += `
${commentHeader}
Expand Down Expand Up @@ -13054,6 +13057,7 @@ try {
} catch (error) {
core.setFailed(error.message);
}

})();

module.exports = __webpack_exports__;
Expand Down

0 comments on commit ef2fd8c

Please sign in to comment.