From fa7b1390d8b2c5b9e9e1a4055afb6788246034dc Mon Sep 17 00:00:00 2001 From: David Collins Date: Wed, 18 Dec 2024 13:06:21 -0500 Subject: [PATCH] Copy action template from r-devel/recheck --- .github/workflows/pre-release_checks.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/pre-release_checks.yaml diff --git a/.github/workflows/pre-release_checks.yaml b/.github/workflows/pre-release_checks.yaml new file mode 100644 index 000000000..01854fd48 --- /dev/null +++ b/.github/workflows/pre-release_checks.yaml @@ -0,0 +1,21 @@ +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