Skip to content

Commit

Permalink
fix: fixed logic bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jburns24 committed Sep 3, 2024
1 parent 140945a commit 45bfcb1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13481,8 +13481,8 @@ const output = () => {
return resource.change.actions != ["no-op"];
})

if (!showChangedResources) {
const showChangedResources = core.getBooleanInput("show-changed-resources");
if (showChangedResources) {
console.log("changed_resources", changed_resources)
}

if (Array.isArray(resource_changes) && resource_changes.length > 0) {
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ const output = () => {
return resource.change.actions != ["no-op"];
})

if (!showChangedResources) {
const showChangedResources = core.getBooleanInput("show-changed-resources");
if (showChangedResources) {
console.log("changed_resources", changed_resources)
}

if (Array.isArray(resource_changes) && resource_changes.length > 0) {
Expand Down

0 comments on commit 45bfcb1

Please sign in to comment.