Permalink
Cannot retrieve contributors at this time
20 lines (17 sloc)
517 Bytes
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/.github/actions/check-sarif/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.
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: 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: node20 | |
main: index.js |