Skip to content

Commit 47a43e2

Browse files
committed
Update from CI
1 parent b8457d0 commit 47a43e2

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Diff for: action.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ inputs:
77
required: true
88
output:
99
description: File to write with rendered output
10-
required: true
1110
show:
1211
description: Types of tests to show in the results table
1312
runs:

Diff for: index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function run() {
5454
return __awaiter(this, void 0, void 0, function* () {
5555
try {
5656
const pathGlobs = core.getInput("paths", { required: true });
57-
const outputFile = core.getInput("output", { required: true });
57+
const outputFile = core.getInput("output") || process.env.GITHUB_STEP_SUMMARY || "-";
5858
const showList = core.getInput("show");
5959
/*
6060
* Given paths may either be an individual path (eg "foo.xml"), a path

0 commit comments

Comments
 (0)