Skip to content

Commit b58d7c2

Browse files
committed
Fix logic error
1 parent 603a572 commit b58d7c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/analyze-action.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.

src/analyze.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ export async function runQueries(
719719
// SARIF file we want for the one enabled analysis kind.
720720
let analysisSummary: string | undefined;
721721
if (
722-
configUtils.isCodeScanningEnabled(config) ||
722+
configUtils.isCodeScanningEnabled(config) !==
723723
configUtils.isCodeQualityEnabled(config)
724724
) {
725725
logger.startGroup(

0 commit comments

Comments
 (0)