From d4a4364649b1ff579f6143b8784e25700b1f33ad Mon Sep 17 00:00:00 2001 From: mitchelloharawild Date: Tue, 17 Sep 2024 13:50:04 +1000 Subject: [PATCH] Add recheck reverse dependency check action --- .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