Skip to content

Commit 7af0bc1

Browse files
committed
Improve summary
1 parent 15422ad commit 7af0bc1

File tree

3 files changed

+25
-20
lines changed

3 files changed

+25
-20
lines changed

action.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ branding:
22
color: green
33
icon: play
44
description:
5-
Trigger other workflows, display a link, and optionally wait for the result.
5+
🚀 Trigger other workflows, display a link, and optionally wait for the
6+
result.
67
name: Workflow Dispatch Plus
78
inputs:
89
inputs:

workflow-dispatch/dist/main.js

+9-6
Original file line numberDiff line numberDiff line change
@@ -29917,6 +29917,7 @@ async function main() {
2991729917
else {
2991829918
dispatcher = new NextRunDispatcher(octokit);
2991929919
}
29920+
let summary_ = coreExports.summary;
2992029921
const runFinder = await dispatcher.start({
2992129922
owner,
2992229923
repo,
@@ -29935,23 +29936,25 @@ async function main() {
2993529936
}
2993629937
return;
2993729938
}
29938-
const downstreamUrl = workflowRunAttemptUrl(context.serverUrl, owner, repo, runId, 1);
29939-
coreExports.info(`Created workflow run ${downstreamUrl}`);
29940-
await coreExports.summary
29941-
.addRaw(`Created workflow run [${downstreamUrl}](${downstreamUrl})`)
29942-
.addEOL()
29943-
.write();
29939+
const downstreamUrl = workflowRunUrl(context.serverUrl, owner, repo, runId);
29940+
coreExports.info(`Started workflow run ${downstreamUrl}`);
29941+
summary_ = coreExports.summary
29942+
.addHeading(context.action)
29943+
.addRaw(`Started workflow run [${owner}/${repo}:${workflow}@${ref}](${downstreamUrl})`)
29944+
.addEOL();
2994429945
coreExports.setOutput("run_id", runId);
2994529946
if (wait) {
2994629947
const conclusion = await waitWorkflowRunAttempt(octokit, owner, repo, runId, 1);
2994729948
coreExports.setOutput("conclusion", conclusion);
2994829949
if (conclusion !== "success") {
29950+
summary_ = summary_.addRaw(`Conclusion: ${conclusion}`);
2994929951
coreExports.setFailed(`Conclusion: ${conclusion}`);
2995029952
}
2995129953
else {
2995229954
coreExports.info(`Conclusion: ${conclusion}`);
2995329955
}
2995429956
}
29957+
await summary_.write();
2995529958
}
2995629959
main().catch((e) => {
2995729960
if (e instanceof ActionError) {

workflow-dispatch/src/main.ts

+14-13
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
getBooleanInput,
1414
getJsonInput,
1515
getRepoInput,
16-
workflowRunAttemptUrl,
16+
workflowRunUrl,
1717
} from "./action";
1818
import { ActionError } from "./core";
1919
import {
@@ -46,6 +46,8 @@ async function main() {
4646
dispatcher = new NextRunDispatcher(octokit);
4747
}
4848

49+
let summary_ = summary;
50+
4951
const runFinder = await dispatcher.start({
5052
owner,
5153
repo,
@@ -63,18 +65,14 @@ async function main() {
6365
}
6466
return;
6567
}
66-
const downstreamUrl = workflowRunAttemptUrl(
67-
context.serverUrl,
68-
owner,
69-
repo,
70-
runId,
71-
1
72-
);
73-
info(`Created workflow run ${downstreamUrl}`);
74-
await summary
75-
.addRaw(`Created workflow run [${downstreamUrl}](${downstreamUrl})`)
76-
.addEOL()
77-
.write();
68+
const downstreamUrl = workflowRunUrl(context.serverUrl, owner, repo, runId);
69+
info(`Started workflow run ${downstreamUrl}`);
70+
summary_ = summary
71+
.addHeading(context.action)
72+
.addRaw(
73+
`Started workflow run [${owner}/${repo}:${workflow}@${ref}](${downstreamUrl})`
74+
)
75+
.addEOL();
7876

7977
setOutput("run_id", runId);
8078

@@ -88,11 +86,14 @@ async function main() {
8886
);
8987
setOutput("conclusion", conclusion);
9088
if (conclusion !== "success") {
89+
summary_ = summary_.addRaw(`Conclusion: ${conclusion}`);
9190
setFailed(`Conclusion: ${conclusion}`);
9291
} else {
9392
info(`Conclusion: ${conclusion}`);
9493
}
9594
}
95+
96+
await summary_.write();
9697
}
9798

9899
main().catch((e) => {

0 commit comments

Comments
 (0)