Permalink
Cannot retrieve contributors at this time
29 lines (27 sloc)
980 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/tests/multi-language-repo/.github/codeql/custom-queries.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: Use custom queries | |
disable-default-queries: true | |
queries: | |
# Query suites | |
- name: Select a query suite | |
uses: ./codeql-qlpacks/complex-python-qlpack/rootAndBar.qls | |
# QL pack subset | |
- name: Select a ql file | |
uses: ./codeql-qlpacks/complex-javascript-qlpack/show_ifs.ql | |
- name: Select a subfolder | |
uses: ./codeql-qlpacks/complex-javascript-qlpack/foo | |
- name: Select a folder with two subfolders | |
uses: ./codeql-qlpacks/complex-javascript-qlpack/foo2 | |
# Inrepo QL pack | |
- name: Select an inrepo ql pack | |
uses: ./codeql-qlpacks/csharp-qlpack | |
- name: Java queries | |
uses: ./codeql-qlpacks/java-qlpack | |
# External QL packs | |
- name: Go queries | |
uses: codeql-testing/go-querypack@master | |
- name: Cpp queries | |
uses: codeql-testing/cpp-querypack@second-branch | |
- name: JavaScript queries | |
uses: codeql-testing/javascript-querypack/show_ifs2.ql@master | |
- name: Python queries | |
uses: codeql-testing/python-querypack/show_ifs2.ql@second-branch |