From 8292fa0cce3d11b1f67901c86afe2e3f81761870 Mon Sep 17 00:00:00 2001 From: mitchelloharawild Date: Wed, 25 Sep 2024 01:19:56 +1000 Subject: [PATCH] Add recheck workflow --- .github/workflows/recheck.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/recheck.yml diff --git a/.github/workflows/recheck.yml b/.github/workflows/recheck.yml new file mode 100644 index 00000000..ea5d3b23 --- /dev/null +++ b/.github/workflows/recheck.yml @@ -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