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

brycemecum pushed a commit to branch maint-18.0.0-r
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/maint-18.0.0-r by this push:
     new f96684fc7a Add recheck crossbow task
f96684fc7a is described below

commit f96684fc7ab69436e0e84961bb2989b892772bc7
Author: Bryce Mecum <[email protected]>
AuthorDate: Wed Oct 23 19:20:10 2024 -0700

    Add recheck crossbow task
---
 dev/tasks/r/github.recheck.yml | 30 ++++++++++++++++++++++++++++++
 dev/tasks/tasks.yml            |  7 +++++++
 2 files changed, 37 insertions(+)

diff --git a/dev/tasks/r/github.recheck.yml b/dev/tasks/r/github.recheck.yml
new file mode 100644
index 0000000000..b3bdf84347
--- /dev/null
+++ b/dev/tasks/r/github.recheck.yml
@@ -0,0 +1,30 @@
+# 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.
+
+{% import 'macros.jinja' as macros with context %}
+
+{{ macros.github_header() }}
+
+jobs:
+  recheck:
+    name: Reverse check {{ which }} dependents
+    uses: amoeba/recheck/.github/workflows/recheck.yml@v1 # TODO: Point at 
recheck not amoeba before merging and pin to SHA
+    with:
+      which: {{ which }}
+      subdirectory: r
+      repository: {{ arrow.github_repo }}
+      ref: {{ arrow.branch }}
diff --git a/dev/tasks/tasks.yml b/dev/tasks/tasks.yml
index 9137181466..f517b63c1e 100644
--- a/dev/tasks/tasks.yml
+++ b/dev/tasks/tasks.yml
@@ -901,6 +901,13 @@ tasks:
       - 
r-pkg__bin__macosx__big-sur-arm64__contrib__4.3__arrow_{no_rc_r_version}\.tgz
       - r-pkg__src__contrib__arrow_{no_rc_r_version}\.tar\.gz
 
+{% for which in ["strong", "most"] %}
+  r-recheck-{{which}}:
+    ci: github
+    template: r/github.recheck.yml
+    params:
+      which: {{which}}
+{% endfor %}
 
   ########################### Release verification ############################
 

Reply via email to