We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c41b278 commit df7d681Copy full SHA for df7d681
init/action.yml
@@ -115,6 +115,7 @@ inputs:
115
(which for GitHub-hosted runners is 2 for Linux and Windows and 3 for macOS).
116
This input also sets the number of threads that can later be used by the "analyze" action.
117
required: false
118
+ default: "${{ env.CODEQL_THREADS }}"
119
debug:
120
description: >-
121
Enable debugging mode.
src/init-action.ts
@@ -547,8 +547,7 @@ async function run() {
547
);
548
core.exportVariable(
549
"CODEQL_THREADS",
550
- process.env["CODEQL_THREADS"] ||
551
- getThreadsFlagValue(getOptionalInput("threads"), logger).toString(),
+ getThreadsFlagValue(getOptionalInput("threads"), logger).toString(),
552
553
554
// Disable Kotlin extractor if feature flag set
0 commit comments