We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df7d681 commit 77ae18dCopy full SHA for 77ae18d
2 files changed
init/action.yml
@@ -115,7 +115,6 @@ 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,7 +547,8 @@ async function run() {
547
);
548
core.exportVariable(
549
"CODEQL_THREADS",
550
- getThreadsFlagValue(getOptionalInput("threads"), logger).toString(),
+ process.env["CODEQL_THREADS"] ||
551
+ getThreadsFlagValue(getOptionalInput("threads"), logger).toString(),
552
553
554
// Disable Kotlin extractor if feature flag set
0 commit comments