This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-erlang.git
The following commit(s) were added to refs/heads/main by this push:
new aebb6de chore: Enable Dependabot (#61)
aebb6de is described below
commit aebb6debc2b67489d318446ca241f7161e5de059
Author: Benjamin Philip <[email protected]>
AuthorDate: Mon Jun 29 11:44:49 2026 +0530
chore: Enable Dependabot (#61)
## What issue does this PR close?
Closes #56.
## What changed
This commit enables dependabot for GitHub Actions and Cargo. Though the
Hex ecosystem is supported via Elixir's Mix, Rebar3 support for Erlang
is missing.
---
.github/dependabot.yml | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000..5bdbfb9
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,33 @@
+# 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: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "daily"
+ commit-message:
+ prefix: "chore: "
+ open-pull-requests-limit: 10
+ - package-ecosystem: "cargo"
+ directory: "/native/arrow_format_nif"
+ schedule:
+ interval: "daily"
+ commit-message:
+ prefix: "chore: "
+ open-pull-requests-limit: 10