From ea45550c23264bb832cf43b213cc72c87104c17a Mon Sep 17 00:00:00 2001 From: pgijsbertsen <117165507+pgijsbertsen@users.noreply.github.com> Date: Wed, 18 Feb 2026 21:43:13 +0100 Subject: [PATCH] try again --- .forgejo/workflows/tofu-plan-k8s-wheatley.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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