From 29752ecd746867d5c07fb560d7540848eda5680b Mon Sep 17 00:00:00 2001
From: Matt Strayer <git@mattstrayer.com>
Date: Wed, 12 Aug 2020 12:23:07 -0400
Subject: [PATCH] ignore dependabot PRs for codeQL workflow

---
 .github/workflows/codeql-analysis.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index ee06377..d4478f3 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -5,7 +5,8 @@ on:
     branches: [master]
   pull_request:
     # The branches below must be a subset of the branches above
-    branches: [master]
+    branches-ignore:
+      - 'dependabot/**'
   schedule:
     - cron: '0 21 * * 0'