This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 1004cf5ec ci: cut down on Dependabot spam a bit (#3414)
1004cf5ec is described below
commit 1004cf5ecd4ab44fd84a1ff029934dbb4f490cd5
Author: David Li <[email protected]>
AuthorDate: Tue Sep 9 10:49:35 2025 +0900
ci: cut down on Dependabot spam a bit (#3414)
Don't run all the pipelines twice, and group together some more
dependency updates (even if they aren't strictly related).
---
.github/dependabot.yml | 4 ++++
.github/workflows/integration.yml | 2 ++
.github/workflows/native-unix.yml | 2 ++
.github/workflows/native-windows.yml | 2 ++
4 files changed, 10 insertions(+)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 3f354060d..4f320f8d1 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -30,6 +30,10 @@ updates:
commit-message:
prefix: "chore(go/adbc): "
groups:
+ "golang.org/x":
+ applies-to: version-updates
+ patterns:
+ - "golang.org/x/*"
opentelemetry:
applies-to: version-updates
patterns:
diff --git a/.github/workflows/integration.yml
b/.github/workflows/integration.yml
index ca127a58c..01c508647 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -28,6 +28,8 @@ on:
- "python/**"
- ".github/workflows/integration.yml"
push:
+ branches-ignore:
+ - 'dependabot/**'
paths:
- "c/**"
- "ci/**"
diff --git a/.github/workflows/native-unix.yml
b/.github/workflows/native-unix.yml
index 5a1f7a507..7b50d92e8 100644
--- a/.github/workflows/native-unix.yml
+++ b/.github/workflows/native-unix.yml
@@ -31,6 +31,8 @@ on:
- "ruby/**"
- ".github/workflows/native-unix.yml"
push:
+ branches-ignore:
+ - 'dependabot/**'
paths:
- "c/**"
- "ci/**"
diff --git a/.github/workflows/native-windows.yml
b/.github/workflows/native-windows.yml
index 7b588e3c6..c30f7f155 100644
--- a/.github/workflows/native-windows.yml
+++ b/.github/workflows/native-windows.yml
@@ -30,6 +30,8 @@ on:
- "ruby/**"
- ".github/workflows/native-windows.yml"
push:
+ branches-ignore:
+ - 'dependabot/**'
paths:
- "c/**"
- "ci/**"