Unified: add default_queries and standard qls files#22083
Open
asgerf wants to merge 2 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds the standard CodeQL suite entrypoints and a default_queries setting for the Unified extractor so it can be used by downstream tooling (notably DCA) in the same way as other language extractors.
Changes:
- Add
default_queries: [codeql/unified-queries]tounified/codeql-extractor.yml. - Introduce standard suite files under
unified/ql/src/codeql-suites/(code scanning, security, and quality variants). - Wire those suites to
codeql/suite-helpersselector files viaapply.
Show a summary per file
| File | Description |
|---|---|
| unified/ql/src/codeql-suites/unified-security-extended.qls | Adds unified “security-extended” suite using suite-helper selectors. |
| unified/ql/src/codeql-suites/unified-security-experimental.qls | Adds unified “security-experimental” suite using suite-helper selectors. |
| unified/ql/src/codeql-suites/unified-security-and-quality.qls | Adds unified “security-and-quality” suite using suite-helper selectors. |
| unified/ql/src/codeql-suites/unified-code-scanning.qls | Adds unified “code-scanning” suite using suite-helper selectors. |
| unified/ql/src/codeql-suites/unified-code-quality.qls | Adds unified “code-quality” suite using suite-helper selectors. |
| unified/ql/src/codeql-suites/unified-code-quality-extended.qls | Adds unified “code-quality-extended” suite using suite-helper selectors. |
| unified/codeql-extractor.yml | Sets the extractor’s default query pack to codeql/unified-queries. |
Review details
- Files reviewed: 7/7 changed files
- Comments generated: 4
- Review effort level: Low
| @@ -0,0 +1,4 @@ | |||
| - description: Standard Code Scanning queries | |||
| @@ -0,0 +1,4 @@ | |||
| - description: Security-extended queries | |||
| @@ -0,0 +1,4 @@ | |||
| - description: Extended and experimental security queries | |||
Comment on lines
+1
to
+3
| - queries: . | ||
| - apply: security-and-quality-selectors.yml | ||
| from: codeql/suite-helpers |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Needed to make DCA work