-
Notifications
You must be signed in to change notification settings - Fork 924
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update workflow to trigger on pushed to check/pre-release
- Loading branch information
1 parent
227eaec
commit c3c959d
Showing
1 changed file
with
14 additions
and
17 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 |
---|---|---|
@@ -1,21 +1,18 @@ | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
which: | ||
type: choice | ||
description: Which dependents to check | ||
options: | ||
- strong | ||
- most | ||
|
||
name: Reverse dependency check | ||
name: Pre-Release Checks | ||
|
||
# Once the default branch for satijalab/seurat has been updated to from | ||
# `master` to `main` this workflow will be triggered on `workflow_dispatch`. | ||
# Until then, we'll manually rebase this branch onto whatever branch | ||
# we'd like to run the workflow against. | ||
on: | ||
push: | ||
branches: | ||
- check/pre-release | ||
|
||
# Runs a reverse dependency check similar to CRAN, for more details see | ||
# https://github.com/r-devel/recheck. | ||
jobs: | ||
revdep_check: | ||
name: Reverse check ${{ inputs.which }} dependents | ||
check-reverse-dependencies: | ||
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 | ||
which: most |