diff --git a/.github/workflows/recheck.yml b/.github/workflows/recheck.yml new file mode 100644 index 000000000..2861876ea --- /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 }} +