From 3da321321691f191c3acdfa3f847a9b9faeb6b53 Mon Sep 17 00:00:00 2001 From: Seongho Bae Date: Sun, 1 Feb 2026 10:16:10 +0900 Subject: [PATCH] chore: make CodeQL workflow manual under org default setup Org-controlled Code Scanning default setup conflicts with advanced CodeQL workflow uploads. Keep the pinned workflow as workflow_dispatch only to avoid failing check-runs while default setup runs automatically. --- .github/workflows/codeql.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 2bb35a984..9feb9446b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -1,11 +1,13 @@ -name: codeql +name: codeql-advanced (manual) on: - push: - branches: ["main"] - pull_request: - schedule: - - cron: "0 2 * * 1" + # NOTE: This repository has GitHub Code Scanning "default setup" enabled and + # it is controlled by organization administrators. Running an advanced + # CodeQL workflow alongside default setup can fail with: + # "CodeQL analyses from advanced configurations cannot be processed when the default setup is enabled". + # + # To avoid merge-gate noise, keep this workflow manual only. + workflow_dispatch: permissions: contents: read