about summary refs log tree commit diff
path: root/.github
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2023-03-08 01:12:57 -0500
committerGitHub <noreply@github.com>2023-03-08 15:12:57 +0900
commitfb13f374751e9e6d9d54d6f781d71ba2b31afe97 (patch)
tree1dff0afb15c5a29b4fdc0118310964fd7e279ba0 /.github
parente594bb7d5042f4a531334fd29bf4961f2152c4fa (diff)
Skip double building on Dependabot branches (#24025)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rebase-needed.yml4
-rw-r--r--.github/workflows/test-ruby.yml2
2 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/rebase-needed.yml b/.github/workflows/rebase-needed.yml
index 99b224ec6..944ae7b28 100644
--- a/.github/workflows/rebase-needed.yml
+++ b/.github/workflows/rebase-needed.yml
@@ -2,7 +2,11 @@ name: PR Needs Rebase
 
 on:
   push:
+    branches-ignore:
+      - 'dependabot/**'
   pull_request_target:
+    branches-ignore:
+      - 'dependabot/**'
     types: [synchronize]
 
 permissions:
diff --git a/.github/workflows/test-ruby.yml b/.github/workflows/test-ruby.yml
index 60f5df885..39b434188 100644
--- a/.github/workflows/test-ruby.yml
+++ b/.github/workflows/test-ruby.yml
@@ -2,6 +2,8 @@ name: Ruby Testing
 
 on:
   push:
+    branches-ignore:
+      - 'dependabot/**'
   pull_request:
 
 env: