This is an automated email from the ASF dual-hosted git repository.
blaginin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-sandbox.git
The following commit(s) were added to refs/heads/main by this push:
new 5b4507c1b chore: remove dependabot config from sandbox (#235)
5b4507c1b is described below
commit 5b4507c1bb0b711f150351d34e184ad7dd64f9e6
Author: Dmitrii Blaginin <[email protected]>
AuthorDate: Thu May 7 18:18:34 2026 +0100
chore: remove dependabot config from sandbox (#235)
## Summary
- Delete `.github/dependabot.yml` so Dependabot stops opening
version-update PRs in this sandbox repo.
This repo only exists for CI testing, so we don't need automated
dependency PRs at all. Security updates can still be enabled via repo
Settings → Code security if desired (independent of this file).
Supersedes #234.
## Test plan
- [ ] No new Dependabot PRs after merge
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude Opus 4.7 (1M context) <[email protected]>
---
.github/dependabot.yml | 75 --------------------------------------------------
1 file changed, 75 deletions(-)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
deleted file mode 100644
index 2cd4bdfdd..000000000
--- a/.github/dependabot.yml
+++ /dev/null
@@ -1,75 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-version: 2
-updates:
- - package-ecosystem: cargo
- directory: "/"
- schedule:
- interval: weekly
- target-branch: main
- labels: [auto-dependencies]
- open-pull-requests-limit: 15
- ignore:
- # major version bumps of arrow* and parquet are handled manually
- - dependency-name: "arrow*"
- update-types: ["version-update:semver-major"]
- - dependency-name: "parquet"
- update-types: ["version-update:semver-major"]
- groups:
- # minor and patch bumps of arrow* and parquet are grouped
- arrow-parquet:
- applies-to: version-updates
- patterns:
- - "arrow*"
- - "parquet"
- update-types:
- - "minor"
- - "patch"
- proto:
- applies-to: version-updates
- patterns:
- - "prost*"
- - "pbjson*"
-
- # Catch-all: group only minor/patch into a single PR,
- # excluding deps we want always separate (and excluding arrow/parquet
which have their own group)
- all-other-cargo-deps:
- applies-to: version-updates
- patterns:
- - "*"
- exclude-patterns:
- - "arrow*"
- - "parquet"
- - "object_store"
- - "sqlparser"
- - "prost*"
- - "pbjson*"
- update-types:
- - "minor"
- - "patch"
- - package-ecosystem: "github-actions"
- directory: "/"
- schedule:
- interval: "weekly"
- open-pull-requests-limit: 10
- labels: [auto-dependencies]
- - package-ecosystem: "pip"
- directory: "/docs"
- schedule:
- interval: "weekly"
- labels: [auto-dependencies]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]