mirror of
https://github.com/github/codeql-action.git
synced 2025-12-06 15:58:06 +08:00
21 lines
517 B
YAML
21 lines
517 B
YAML
name: Check SARIF
|
|
description: Checks a SARIF file to see if certain queries were run and others were not run.
|
|
inputs:
|
|
sarif-file:
|
|
required: true
|
|
description: The SARIF file to check
|
|
|
|
queries-run:
|
|
required: true
|
|
description: |
|
|
Comma separated list of query ids that should be included in this SARIF file.
|
|
|
|
queries-not-run:
|
|
required: true
|
|
description: |
|
|
Comma separated list of query ids that should NOT be included in this SARIF file.
|
|
|
|
runs:
|
|
using: node24
|
|
main: index.js
|