You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# [1.10.0](v1.9.0...v1.10.0) (2025-04-29)
### Features
* Add tags tracking, unchanged resources, and matrix support for jobs ([#87](#87)) ([b2f5356](b2f5356))
* Add tags tracking, unchanged resources, and matrix support for jobs ([#87](https://github.com/liatrio/terraform-change-pr-commenter/issues/87)) ([b2f5356](https://github.com/liatrio/terraform-change-pr-commenter/commit/b2f535616c169467e523e6ff35ba684606ee2521))
if (isTagOnlyChange(change.before, change.after)) {
12977
+
resources_to_tag.push(address);
12978
+
} else {
12979
+
resources_to_update.push(address);
12980
+
}
12952
12981
break;
12953
12982
}
12954
12983
}
@@ -12959,11 +12988,13 @@ const output = () => {
12959
12988
${commentHeader}
12960
12989
<details ${expandDetailsComment ? "open" : ""}>
12961
12990
<summary>
12962
-
<b>Terraform Plan: ${resources_to_create.length} to be created, ${resources_to_delete.length} to be deleted, ${resources_to_update.length} to be updated, ${resources_to_replace.length} to be replaced, ${resources_unchanged.length} unchanged.</b>
12991
+
<b>Terraform Plan: ${resources_to_create.length} to be created, ${resources_to_delete.length} to be deleted, ${resources_to_update.length} to be updated${includeTagOnlyResources ? `, ${resources_to_tag.length} to be tagged` : ''}, ${resources_to_replace.length} to be replaced, ${resources_unchanged.length} unchanged.</b>
0 commit comments