Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/analyze/action.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Alex Kalyvitis
introduce inputs.threads flag to analyze action
29 lines (29 sloc)
816 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'CodeQL: Finish' | |
description: 'Finalize CodeQL database' | |
author: 'GitHub' | |
inputs: | |
check_name: | |
description: The name of the check run to add text to. | |
required: false | |
output: | |
description: The path of the directory in which to save the SARIF results | |
required: false | |
default: '../results' | |
upload: | |
description: Upload the SARIF file | |
required: false | |
default: "true" | |
ram: | |
description: Override the amount of memory in MB to be used by CodeQL. By default, almost all the memory of the machine is used. | |
required: false | |
threads: | |
description: The number of threads to be used by CodeQL. | |
required: false | |
default: "1" | |
token: | |
default: ${{ github.token }} | |
matrix: | |
default: ${{ toJson(matrix) }} | |
runs: | |
using: 'node12' | |
main: '../lib/finalize-db.js' |