Skip to content

Commit ed7e91b

Browse files
committed
add recheck workflow
1 parent 1f8b494 commit ed7e91b

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/recheck.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on:
2+
workflow_dispatch:
3+
inputs:
4+
which:
5+
type: choice
6+
description: Which dependents to check
7+
options:
8+
- strong
9+
- most
10+
schedule:
11+
- cron: '0 4 1 * *'
12+
13+
name: Reverse dependency check
14+
15+
jobs:
16+
revdep_check:
17+
name: Reverse check ${{ inputs.which }} dependents
18+
uses: r-devel/recheck/.github/workflows/recheck.yml@v1
19+
with:
20+
which: ${{ inputs.which }}
21+
subdirectory: ''

0 commit comments

Comments
 (0)