This is an automated email from the ASF dual-hosted git repository.
github-merge-queue[bot] pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/texera.git
The following commit(s) were added to refs/heads/main by this push:
new 6eb4165f7c chore: remove unintentional Dependabot bun config for
agent-service (#5914)
6eb4165f7c is described below
commit 6eb4165f7ca49ba4eb9d6727971097763c9a8377
Author: Xinyuan Lin <[email protected]>
AuthorDate: Tue Jun 23 15:08:36 2026 -0700
chore: remove unintentional Dependabot bun config for agent-service (#5914)
### What changes were proposed in this PR?
Removes `.github/dependabot.yml`, reverting an unintentional change
introduced by #4961.
That PR (an `elysia` version bump) also created `.github/dependabot.yml`
from scratch with a single `bun` ecosystem entry:
```yaml
updates:
- package-ecosystem: "bun"
directory: "/agent-service"
schedule:
interval: "weekly"
commit-message:
prefix: "chore(deps)"
```
This configures Dependabot to open **weekly** dependency-bump PRs for
`/agent-service` — routine version bumps, **not** security-driven. The
config was added as a workaround for Dependabot not handling `bun.lock`
correctly, but it was not the intended change of #4961, was not
reflected in that PR's description, and was not reviewed by the other
maintainers.
Since the file never existed before #4961, the revert simply deletes it,
restoring the pre-#4961 state (no Dependabot configuration, no automatic
weekly bumps for `agent-service`).
### Any related issues, documentation, discussions?
Reverts the `.github/dependabot.yml` addition from #4961.
### How was this PR tested?
No tests apply — this removes a CI/automation config file. The change is
a clean deletion of a file added by #4961 (`1 file changed, 28
deletions(-)`); `git diff` confirms the working tree returns to the
pre-#4961 state for this path.
### Was this PR authored or co-authored using generative AI tooling?
Generated-by: Claude Code (Opus 4.8)
Co-authored-by: Claude Opus 4.8 <[email protected]>
---
.github/dependabot.yml | 28 ----------------------------
1 file changed, 28 deletions(-)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
deleted file mode 100644
index 7fa277b31a..0000000000
--- a/.github/dependabot.yml
+++ /dev/null
@@ -1,28 +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.
-
-# agent-service uses Bun (bun.lock). The npm/yarn updater leaves bun.lock
-# stale, so version updates run through the bun ecosystem instead. Requires
-# Dependabot bun support (>= v1.2.5).
-version: 2
-updates:
- - package-ecosystem: "bun"
- directory: "/agent-service"
- schedule:
- interval: "weekly"
- commit-message:
- prefix: "chore(deps)"