-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add reverse dependency check GitHub Action
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |