From 38d817b7b98aba192a4fe5cbaa73188da2f59fde Mon Sep 17 00:00:00 2001 From: Bruno Oliveira da Silva Date: Wed, 9 Feb 2022 17:19:56 -0300 Subject: [PATCH] Configure CodeQL to perform the analysis of the main branch The CodeQL configuration file still has some references to the old branch `master`, that means that most of the information provided by the tool must be outdated. Change it is necessary to perform the correct analysis of the codebase. Closes #10103 --- .github/workflows/codeql-analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index bb5e648314..b694896ebc 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -7,10 +7,10 @@ name: "CodeQL" on: push: - branches: [master] + branches: [main] pull_request: # The branches below must be a subset of the branches above - branches: [master] + branches: [main] paths-ignore: - 'testsuite/**' - 'examples/**'