We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 785ee05 commit 56a5091Copy full SHA for 56a5091
1 file changed
.github/actions/check-concepts-up-to-date/action.yml
@@ -60,6 +60,14 @@ runs:
60
echo '```'
61
echo
62
echo "</details>"
63
+ echo
64
+ echo "<details><summary>Actual differences</summary>"
65
66
+ echo '```diff'
67
+ cat concept-drift.diff
68
+ echo '```'
69
70
+ echo "</details>"
71
} >> "$GITHUB_STEP_SUMMARY"
72
73
- name: Report neutral check run when out of date
@@ -93,6 +101,11 @@ runs:
93
101
'```',
94
102
files,
95
103
104
+ '',
105
+ '### Actual differences',
106
+ '```diff',
107
+ diff,
108
+ '```',
96
109
].join('\n');
97
110
98
111
try {
@@ -106,7 +119,6 @@ runs:
119
output: {
120
title: 'Transpiled concepts are out of date',
121
summary,
- text: diff ? ['```diff', diff, '```'].join('\n') : undefined,
122
},
123
});
112
124
} catch (error) {
0 commit comments