Skip to content

Commit

Permalink
Adding additional changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sylviamclaughlin authored Nov 15, 2024
1 parent 11ddc4d commit 4af10d2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36321,8 +36321,9 @@ const action = async () => {
const commands = [
{
key: "init",
exec: `${binary}${isTerragrunt && initRunAll ? " run-all" : ""} init -no-color ${terraformInit ? terraformInit.join(" ") : ""
}`.trim(),
exec: `${binary}${isTerragrunt && initRunAll ? " run-all" : ""} init -no-color ${
terraformInit ? terraformInit.join(" ") : ""
}`.trim(),
},
{
key: "validate",
Expand Down Expand Up @@ -36365,7 +36366,7 @@ const action = async () => {

// if not terragrunt and init-run-all is true, then notify the user that this command is only valid for terragrunt
if (!isTerragrunt && initRunAll) {
core.console.warn(
core.warning(
"init-run-all is only valid when using terragrunt, skipping this option",
);
}
Expand Down Expand Up @@ -36423,7 +36424,6 @@ const action = async () => {
}
}


// Delete previous PR comments
if (isCommentDelete) {
await deleteComment(octokit, github.context, commentTitle);
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ const action = async () => {
const commands = [
{
key: "init",
exec: `${binary}${isTerragrunt && initRunAll ? " run-all" : ""} init -no-color ${terraformInit ? terraformInit.join(" ") : ""
}`.trim(),
exec: `${binary}${isTerragrunt && initRunAll ? " run-all" : ""} init -no-color ${
terraformInit ? terraformInit.join(" ") : ""
}`.trim(),
},
{
key: "validate",
Expand Down Expand Up @@ -145,7 +146,6 @@ const action = async () => {
}
}


// Delete previous PR comments
if (isCommentDelete) {
await deleteComment(octokit, github.context, commentTitle);
Expand Down

0 comments on commit 4af10d2

Please sign in to comment.