File tree 1 file changed +26
-2
lines changed 1 file changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -54,13 +54,37 @@ jobs:
54
54
channel-id : ' tmp-reports'
55
55
payload : |
56
56
{
57
- "text": "CI health report ",
57
+ "text": "CI health reports ",
58
58
"blocks": [
59
+ {
60
+ "type": "header",
61
+ "text": {
62
+ "type": "plain_text",
63
+ "text": "CI health"
64
+ }
65
+ },
66
+ {
67
+ "type": "section",
68
+ "text": {
69
+ "type": "mrkdwn",
70
+ "text": ${{ toJSON(steps.message.outputs.health) }}
71
+ }
72
+ },
73
+ {
74
+ "type": "divider"
75
+ },
76
+ {
77
+ "type": "header",
78
+ "text": {
79
+ "type": "plain_text",
80
+ "text": "Failing jobs"
81
+ }
82
+ },
59
83
{
60
84
"type": "section",
61
85
"text": {
62
86
"type": "mrkdwn",
63
- "text": "CI health:\n ${{ toJSON(steps.message.outputs.health) }}\n\nFailing jobs:\n${{ toJSON(steps.message.outputs. failing-jobs) }}"
87
+ "text": ${{ toJSON(steps.message.outputs.failing-jobs) }}
64
88
}
65
89
}
66
90
]
You can’t perform that action at this time.
0 commit comments