From f78483a938e5dd9f6896e4bff48f93b807376e57 Mon Sep 17 00:00:00 2001 From: Ben McClelland Date: Fri, 23 Jan 2026 11:33:48 -0800 Subject: [PATCH] chore: add codeql ignore for embedded 3rd party js assets We were getting some warnings from the embedded tailwind js file. We dont need to be scanning these 3rd party assets in this repo. --- .github/workflows/codeql.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 5ad363b5..46c272ff 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -13,9 +13,9 @@ name: "CodeQL Advanced" on: push: - branches: [ "main", "assets" ] + branches: [ "main" ] pull_request: - branches: [ "main", "assets" ] + branches: [ "main" ] schedule: - cron: '21 17 * * 2' @@ -49,6 +49,9 @@ jobs: build-mode: autobuild - language: javascript-typescript build-mode: none + paths-ignore: + # ignore embedded 3rd party assets + - 'webui/web/assets/**' - language: python build-mode: none # CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift'