mirror of
https://github.com/github/codeql-action.git
synced 2025-12-06 07:48:17 +08:00
22 lines
525 B
YAML
22 lines
525 B
YAML
name: 'CodeQL: Finish'
|
|
description: 'Finalize CodeQL database'
|
|
author: 'GitHub'
|
|
inputs:
|
|
check_name:
|
|
description: The name of the check run to add text to.
|
|
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
|
|
token:
|
|
default: ${{ github.token }}
|
|
matrix:
|
|
default: ${{ toJson(matrix) }}
|
|
runs:
|
|
using: 'node12'
|
|
main: '../lib/finalize-db.js'
|