From 3473b0e0ea4965d45cde8d77210c9a43a19e9998 Mon Sep 17 00:00:00 2001 From: Saumya Rai Date: Fri, 13 Mar 2026 13:31:10 +0530 Subject: [PATCH 1/2] Fix script to handle SARIF file recategorization Signed-off-by: Saumya Rai --- scripts/workflow/recategorize_guidelines.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/workflow/recategorize_guidelines.sh b/scripts/workflow/recategorize_guidelines.sh index 8fa4b736020..97ceef401f0 100755 --- a/scripts/workflow/recategorize_guidelines.sh +++ b/scripts/workflow/recategorize_guidelines.sh @@ -26,3 +26,5 @@ python3 "$RECATEGORIZE_SCRIPT" \ "sarif-results-recategorized/$(basename "$SARIF_FILE")" rm "$SARIF_FILE" mv "sarif-results-recategorized/$(basename "$SARIF_FILE")" "$SARIF_FILE" + + #Test From 0bfca2dd992b68f977ed9788a59f2486f4d11381 Mon Sep 17 00:00:00 2001 From: Saumya-R Date: Fri, 13 Mar 2026 15:46:11 +0530 Subject: [PATCH 2/2] adding debug --- .github/workflows/codeql-multiple-repo-scan.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/codeql-multiple-repo-scan.yml b/.github/workflows/codeql-multiple-repo-scan.yml index a22531153b2..cebd968b41c 100644 --- a/.github/workflows/codeql-multiple-repo-scan.yml +++ b/.github/workflows/codeql-multiple-repo-scan.yml @@ -59,6 +59,10 @@ jobs: id: checkout-repos run: | scripts/workflow/checkout_repos.sh + - name: List files in repos directory (debug) + run: | + echo "Listing all files in repos directory before CodeQL analysis:" + find repos || echo "repos directory not found" - name: Initialize CodeQL for all repositories uses: github/codeql-action/init@v4 with: