Skip to content

Commit e614a51

Browse files
committed
fix: always write summary if summary true
1 parent 9082971 commit e614a51

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/github/handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export async function handleViewsAndComments(
4242
await postOrUpdateIssueComment(inputs, INVISIBLE_MARKER)
4343
}
4444

45-
if (inputs.summary && !inputs.pullRequestReport) {
45+
if (inputs.summary) {
4646
await core.summary.write()
4747
}
4848
core.endGroup()

0 commit comments

Comments
 (0)