diff --git a/.forgejo/workflows/tofu-plan-k8s-wheatley.yaml b/.forgejo/workflows/tofu-plan-k8s-wheatley.yaml
index e6e5c90..517485d 100644
--- a/.forgejo/workflows/tofu-plan-k8s-wheatley.yaml
+++ b/.forgejo/workflows/tofu-plan-k8s-wheatley.yaml
@@ -70,9 +70,9 @@ jobs:
env:
COMMENT_BODY: |
### ${{forge.workflow}}
- #### OpenTofu Format and Style 🖌`${{ steps.fmt.outcome }}`
- #### OpenTofu Initialization ⚙️`${{ steps.init.outcome }}`
- #### OpenTofu Validation 🤖`${{ steps.validate.outcome }}`
+ #### ${{ steps.fmt.outcome == 'success' && '✅' || '❌' }} OpenTofu Format and Style 🖌
+ #### ${{ steps.init.outcome == 'success' && '✅' || '❌' }} OpenTofu Initialization ⚙️
+ #### ${{ steps.validate.outcome == 'success' && '✅' || '❌' }} OpenTofu Validation 🤖
Validation Output
```
@@ -81,7 +81,7 @@ jobs:
- #### OpenTofu Plan 📖`${{ steps.plan.outcome }}`
+ #### ${{ steps.plan.outcome == 'success' && '✅' || '❌' }} OpenTofu Plan 📖
Show Plan