From 1b67293d9c94ff7de28dfb4f8707de5d0cd3665f Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Wed, 12 Nov 2025 08:56:44 -0500 Subject: [PATCH] ci: name sonar and codeql jobs after their respective tools making them easier to distinguish on the ci report --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/sonarcloud-analysis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index f02958dac..ec4db92c3 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -24,7 +24,7 @@ on: - '!src/unittests/**' jobs: - analyze: + codeql: runs-on: ubuntu-latest container: debian:trixie-slim timeout-minutes: 20 diff --git a/.github/workflows/sonarcloud-analysis.yml b/.github/workflows/sonarcloud-analysis.yml index 341739148..380514088 100644 --- a/.github/workflows/sonarcloud-analysis.yml +++ b/.github/workflows/sonarcloud-analysis.yml @@ -25,7 +25,7 @@ on: - '!src/unittests/**' jobs: - analyze: + sonar: # This job would fail for contributors who open PRs as the workflow runs outside of our repo # in this scenario. Having a var that only we set to true prevents this job from running. if: ${{ vars.SONAR_SCANNER_ENABLED }}