From c8de58bee86b66ad4f06be73c4a315208f8a9731 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Harper?= Date: Thu, 29 Jun 2023 11:39:16 -0400 Subject: [PATCH] chore: don't run codeql analysis on Markdown files (#1658) --- .github/workflows/codeql-analysis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index f6501e468..836810287 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -14,9 +14,13 @@ name: "CodeQL" on: push: branches: [ main ] + paths-ignore: + - '**.md' pull_request: # The branches below must be a subset of the branches above branches: [ main ] + paths-ignore: + - '**.md' schedule: - cron: '0 0 * * 6' # Saturdays at midnight