-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 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,7 @@ | ||
Here you can report bugs, or request a new feature. Please use [Stack Overflow](https://stackoverflow.com) for "how-to" questions. | ||
|
||
When reporting a bug, please include a *minimal, self-contained, reproducible example* that illustrates the problem and test it with the development version of "terra", or at least with the current version on CRAN. "self-contained" means that, whenever possible, your example does not rely on a particular file or yours. Instead use example data created with code, or data that ships with R (see the terra help files for examples). | ||
|
||
Please also report your operating system and the output of `packageVersion("terra")` and of `terra::gdal(lib="all")`. | ||
|
||
Except when discussing plots, do not include screen-shots. Instead, copy and paste the R code and responses from the R console. |
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,18 @@ | ||
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 }} |