We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f8b494 commit ed7e91bCopy full SHA for ed7e91b
1 file changed
.github/workflows/recheck.yaml
@@ -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