From 4c6fd9053d34aca702cda6eec544e91981ab5494 Mon Sep 17 00:00:00 2001 From: fabian-s Date: Tue, 3 Sep 2024 16:28:36 +0200 Subject: [PATCH] add revdepcheck --- .github/workflows/recheck.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/recheck.yaml diff --git a/.github/workflows/recheck.yaml b/.github/workflows/recheck.yaml new file mode 100644 index 0000000..ea5d3b2 --- /dev/null +++ b/.github/workflows/recheck.yaml @@ -0,0 +1,19 @@ +on: + workflow_dispatch: + inputs: + which: + type: choice + description: Which dependents to check + options: + - strong + - most + +name: Reverse dependency check + +jobs: + revdep_check: + name: Reverse check ${{ inputs.which }} dependents + uses: r-devel/recheck/.github/workflows/recheck.yml@v1 + with: + which: ${{ inputs.which }} + subdirectory: '' #if your package is in a git subdir \ No newline at end of file