Allows us to analyze and then check that certain queries were included in the analysis and others were not.
20 lines
517 B
YAML
20 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: node12
|
|
main: index.js
|