Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix style inconsistency
  • Loading branch information
mbg committed Oct 22, 2025
commit 02b2c3aafc6fe1a20f6fd866dc171995265ebf93
4 changes: 2 additions & 2 deletions lib/analyze-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/analyze-action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -445,9 +445,9 @@ async function run() {
}

if (
runStats &&
uploadResults &&
uploadResults[analyses.AnalysisKind.CodeScanning]
runStats !== undefined &&
uploadResults !== undefined &&
uploadResults[analyses.AnalysisKind.CodeScanning] !== undefined
) {
await sendStatusReport(
startedAt,
Expand All @@ -464,7 +464,7 @@ async function run() {
dependencyCacheResults,
logger,
);
} else if (runStats) {
} else if (runStats !== undefined) {
await sendStatusReport(
startedAt,
config,
Expand Down
Loading