From d68eeabb54ac313d2ce7311f660f583455b02e80 Mon Sep 17 00:00:00 2001 From: Peter Keresztes Schmidt Date: Wed, 3 Feb 2021 00:57:26 +0100 Subject: [PATCH] CodeQL: Exclude dep/ from analysis --- .github/codeql/codeql-config.yml | 2 ++ .github/workflows/codeql-analysis.yml | 1 + 2 files changed, 3 insertions(+) create mode 100644 .github/codeql/codeql-config.yml diff --git a/.github/codeql/codeql-config.yml b/.github/codeql/codeql-config.yml new file mode 100644 index 000000000..603000225 --- /dev/null +++ b/.github/codeql/codeql-config.yml @@ -0,0 +1,2 @@ +paths-ignore: + - dep/ diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 481eb6f49..aed08288d 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -41,6 +41,7 @@ jobs: uses: github/codeql-action/init@v1 with: languages: ${{ matrix.language }} + config-file: ./.github/codeql/codeql-config.yml # If you wish to specify custom queries, you can do so here or in a config file. # By default, queries listed here will override any specified in a config file. # Prefix the list here with "+" to use these queries and those in the config file.