in src/entrypoints/handle-results.ts [170:186]
function exportResultsOutputs(junieTitle: string,
junieSummary: string,
commitMessage?: string,
prTitle?: string,
prBody?: string): void {
core.setOutput(OUTPUT_VARS.JUNIE_TITLE, junieTitle);
core.setOutput(OUTPUT_VARS.JUNIE_SUMMARY, junieSummary);
if (commitMessage) {
core.setOutput(OUTPUT_VARS.COMMIT_MESSAGE, commitMessage);
}
if (prTitle && prBody) {
core.setOutput(OUTPUT_VARS.PR_TITLE, prTitle);
core.setOutput(OUTPUT_VARS.PR_BODY, prBody);
}
}