You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dist/index.js
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25161,6 +25161,10 @@ function formatResults(results, coverageResults, showCoverage) {
25161
25161
row += `| ${detailsColumn} |\n`;
25162
25162
output += row;
25163
25163
}
25164
+
if (process.env.indicate_source_message === "true") {
25165
+
output +=
25166
+
"\n\n<small>Report generated by [🧪 GitHub Actions for OPA Rego Test](https://github.com/masterpointio/github-action-opa-rego-test)</small>";
Copy file name to clipboardExpand all lines: src/index.ts
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -253,6 +253,11 @@ export function formatResults(
253
253
output+=row;
254
254
}
255
255
256
+
if(process.env.indicate_source_message==="true"){
257
+
output+=
258
+
"\n\n<small>Report generated by [🧪 GitHub Actions for OPA Rego Test](https://github.com/masterpointio/github-action-opa-rego-test)</small>";
0 commit comments