You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ra...@apache.org on 2023/06/21 09:07:40 UTC

[arrow] branch main updated: GH-36056: [CI] Enable Dependabot for GitHub Actions (#36194)

This is an automated email from the ASF dual-hosted git repository.

raulcd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new e6221c45de GH-36056: [CI] Enable Dependabot for GitHub Actions (#36194)
e6221c45de is described below

commit e6221c45de7b4c675bcedfac9afb87f6a131dad9
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Wed Jun 21 18:07:32 2023 +0900

    GH-36056: [CI] Enable Dependabot for GitHub Actions (#36194)
    
    ### Rationale for this change
    
    We can update GitHub Actions (semi) automatically by enabling Dependabot.
    
    ### What changes are included in this PR?
    
    Add Dependabot configuration only for GitHub Actions.
    
    ### Are these changes tested?
    
    No. Sorry. I want to test this by merging this to apache/arrow.
    
    ### Are there any user-facing changes?
    
    No.
    * Closes: #36056
    
    Authored-by: Sutou Kouhei <ko...@clear-code.com>
    Signed-off-by: Raúl Cumplido <ra...@gmail.com>
---
 .github/dependabot.yml | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000000..3edeecddd2
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,25 @@
+# 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: "weekly"
+    commit-message:
+      prefix: "MINOR: [CI]"