split outcomes
All checks were successful
Tofu Plan k8s-wheatley / tofu-plan-k8s-wheatley (pull_request) Successful in 22s
All checks were successful
Tofu Plan k8s-wheatley / tofu-plan-k8s-wheatley (pull_request) Successful in 22s
This commit is contained in:
parent
4d9cd95ab6
commit
b2b80b41f5
1 changed files with 9 additions and 4 deletions
|
|
@ -74,10 +74,15 @@ jobs:
|
|||
[ "$1" = "success" ] && echo "✅" || echo "❌"
|
||||
}
|
||||
|
||||
FMT_OUTPUT="$(emoji '${{ steps.fmt.outcome }}') OpenTofu Format and Style"
|
||||
INIT_OUTPUT="$(emoji '${{ steps.init.outcome }}') OpenTofu Initialization"
|
||||
VALIDATE_OUTPUT="$(emoji '${{ steps.validate.outcome }}') OpenTofu Validation"
|
||||
PLAN_OUTPUT="$(emoji '${{ steps.plan.outcome }}') OpenTofu Plan 📖"
|
||||
FMT_STATUS="${{ steps.fmt.outcome }}"
|
||||
INIT_STATUS="${{ steps.init.outcome }}"
|
||||
VALIDATE_STATUS="${{ steps.validate.outcome }}"
|
||||
PLAN_STATUS="${{ steps.plan.outcome }}"
|
||||
|
||||
FMT_OUTPUT="$(emoji "$FMT_STATUS") OpenTofu Format and Style"
|
||||
INIT_OUTPUT="$(emoji "$INIT_STATUS") OpenTofu Initialization"
|
||||
VALIDATE_OUTPUT="$(emoji "$VALIDATE_STATUS") OpenTofu Validation"
|
||||
PLAN_OUTPUT="$(emoji "$PLAN_STATUS") OpenTofu Plan 📖"
|
||||
|
||||
COMMENT_BODY=$(cat <<EOF
|
||||
### ${{ forge.workflow }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue