From cf49f7050c8558744fe6f01116d4a19affd19bd8 Mon Sep 17 00:00:00 2001 From: igor <6363505+igordot@users.noreply.github.com> Date: Fri, 17 Jan 2025 23:26:35 -0500 Subject: [PATCH] Add reverse dependency check GitHub Action --- .github/workflows/recheck.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 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..c7aadf5 --- /dev/null +++ b/.github/workflows/recheck.yaml @@ -0,0 +1,23 @@ +# Run a reverse dependency check +# Workflow derived from https://github.com/r-devel/recheck +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: '' # set if your R package is in a subdir of the git repo + repository: '' # set to recheck an R package from another git repo + ref: '' # set to recheck a custom tag/branch from another repo