Skip to content

Commit

Permalink
Update workflow to trigger on pushed to check/pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
dcollins15 committed Dec 18, 2024
1 parent 227eaec commit c3c959d
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions .github/workflows/pre-release_checks.yaml
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

0 comments on commit c3c959d

Please sign in to comment.