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: 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