Thanks to visit codestin.com Credit goes to github.com
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 df7d681 commit 77ae18dCopy full SHA for 77ae18d
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