We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48cba86 commit 3771488Copy full SHA for 3771488
eng/tools/openapi-diff-runner/src/index.ts
@@ -173,5 +173,11 @@ export async function main() {
173
await buildPrInfo(context);
174
let statusCode = 0;
175
statusCode = await validateBreakingChange(context);
176
+
177
+ if (process.env.GITHUB_SERVER_URL && process.env.GITHUB_REPOSITORY && process.env.GITHUB_RUN_ID) {
178
+ logMessage(
179
+ `See validation report summary at: ${process.env.GITHUB_SERVER_URL}/${process.env.GITHUB_REPOSITORY}/actions/runs/${process.env.GITHUB_RUN_ID}`,
180
+ );
181
+ }
182
exit(statusCode);
183
}
0 commit comments