cran-status-check

GitHub Action for checking R packages status on CRAN

https://github.com/dieghernan/cran-status-check

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (10.6%) to scientific vocabulary

Keywords

actions continuous-integration cran github-actions r-development r-package rstats rstats-package

Keywords from Contributors

mesh sequences interactive hacking network-simulation
Last synced: 4 months ago · JSON representation ·

Repository

GitHub Action for checking R packages status on CRAN

Basic Info
Statistics
  • Stars: 1
  • Watchers: 2
  • Forks: 1
  • Open Issues: 3
  • Releases: 3
Topics
actions continuous-integration cran github-actions r-development r-package rstats rstats-package
Created almost 3 years ago · Last pushed 6 months ago
Metadata Files
Readme License Citation

README.md

cran-status-check

latest-version

This action checks the CRAN status of a R package and optionally creates an issue or make the action fail. Combined with CRON (see how to set periodic runs on GH Actions), a R package developer can verify regularly if the package needs attention.

Basic configuration

Create a file named cran-status-check.yml on a repo in the usual path for GH actions (.github/workflows) with the following content:

``` yaml name: check-cran-status

on: push: branches: [main, master] schedule: - cron: '0 6 * * 1,4' # Runs at 06:00 on Monday and Thursday, check https://crontab.guru/ jobs: check: runs-on: ubuntu-latest permissions: issues: write env: GITHUBPAT: ${{ secrets.GITHUBTOKEN }}

steps:
  - name: Checkout
    uses: actions/checkout@v4

  - name: Check
    uses: dieghernan/cran-status-check@v2

```

Inputs available

Package inputs

  • path: Default value '.' (root of the repo). Path to the R package root, if the package is not at the top level of the repository.

    ``` yaml

    • name: Check uses: dieghernan/cran-status-check@v2 with: path: "Rpackage" ```
  • package: Default value ''. Name of the package to check. If provided, it would have priority over the package on the repo defined on path. It is useful for creating workflows than can check several packages

    ``` yaml

    • name: Check dplyr uses: dieghernan/cran-status-check@v2 with: package: "dplyr"
    • name: Check ggplot2 uses: dieghernan/cran-status-check@v2 with: package: "ggplot2"
      ```
  • statuses: Default value 'WARN,ERROR'. CRAN status to check. This is a comma-separated string of statuses. Allowed statuses are 'NOTE', 'WARN', and 'ERROR'.

    ``` yaml

    • name: Check dplyr uses: dieghernan/cran-status-check@v2 with: package: "dplyr"
    • name: Check ggplot2 uses: dieghernan/cran-status-check@v2 with: package: "ggplot2"
      ```

Result reports

  • fail-on-error: Default value 'false'. Logical, should the action errors if CRAN checks are not OK? This is useful for ensuring that subsequent steps would be performed even if any of the packages to check throws an error.

    ``` yaml

    • name: Check a package not in CRAN uses: dieghernan/cran-status-check@v2 with: package: "iamnotincran" fail-on-error: "false"
    • name: Check igoR even if the previous step has failed but stop here uses: dieghernan/cran-status-check@v2 with: package: "igoR" statuses: "NOTE,WARN,ERROR" fail-on-error: "true" ```
  • create-issue: Default value true Logical, create an issue on CRAN failed checks using create-issue-from-file action.

  • issue-assignees: Default value ''. Whom should the issue be assigned to if errors are encountered in the CRAN status checks? This is a comma-separated string of GitHub usernames. If undefined or empty, no assignments are made. Check also create-issue-from-file action.

    ``` yaml

    • name: Check igoR and create issue uses: dieghernan/cran-status-check@v2 with: package: "igoR" statuses: "NOTE,WARN,ERROR" fail-on-error: "true" create-issue: "true" issue-assignees: "dieghernan,johndoe" ```

Outputs

  • The action would produce a report with a summary of the check

  • If create-issue: "true" (the default value) and the action found an error, it would create an issue on the repo and (if provided) it would assign it to the users specified on issue-assignees.

  • if fail-on-error: "true" (not activated by default) the action would fail, and GitHub would send a notification to the repo owner following the standard process of GH Actions.

Derived Work Notice

This workflow is derived from cran-status.yml by pharmaverse/admiralci contributors:

Copyright 2021 F. Hoffmann-La Roche AG and GlaxoSmithKline LLC

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Owner

  • Name: Diego H.
  • Login: dieghernan
  • Kind: user
  • Location: Madrid, ES

Citation (CITATION.cff)

cff-version: 1.2.0
message: If you use this software, please cite it using these metadata.
title: cran-status-check
type: software
license: Apache-2.0
abstract: GitHub Action for checking R packages status on CRAN
authors:
- family-names: Hernangómez
  given-names: Diego
  orcid: https://orcid.org/0000-0001-8457-4658
repository-code: https://github.com/dieghernan/cran-status-check
url: https://github.com/marketplace/actions/cran-status-check

GitHub Events

Total
  • Create event: 7
  • Issues event: 2
  • Release event: 1
  • Delete event: 4
  • Issue comment event: 9
  • Push event: 9
  • Pull request event: 12
  • Fork event: 1
Last Year
  • Create event: 7
  • Issues event: 2
  • Release event: 1
  • Delete event: 4
  • Issue comment event: 9
  • Push event: 9
  • Pull request event: 12
  • Fork event: 1

Committers

Last synced: over 1 year ago

All Time
  • Total Commits: 37
  • Total Committers: 2
  • Avg Commits per committer: 18.5
  • Development Distribution Score (DDS): 0.054
Past Year
  • Commits: 2
  • Committers: 2
  • Avg Commits per committer: 1.0
  • Development Distribution Score (DDS): 0.5
Top Committers
Name Email Commits
Diego H d****o@g****m 35
dependabot[bot] 4****] 2

Issues and Pull Requests

Last synced: 4 months ago

All Time
  • Total issues: 1
  • Total pull requests: 16
  • Average time to close issues: N/A
  • Average time to close pull requests: 4 months
  • Total issue authors: 1
  • Total pull request authors: 2
  • Average comments per issue: 0.0
  • Average comments per pull request: 1.38
  • Merged pull requests: 12
  • Bot issues: 1
  • Bot pull requests: 15
Past Year
  • Issues: 1
  • Pull requests: 10
  • Average time to close issues: N/A
  • Average time to close pull requests: about 2 hours
  • Issue authors: 1
  • Pull request authors: 2
  • Average comments per issue: 0.0
  • Average comments per pull request: 1.0
  • Merged pull requests: 8
  • Bot issues: 1
  • Bot pull requests: 9
Top Authors
Issue Authors
  • github-actions[bot] (1)
Pull Request Authors
  • dependabot[bot] (14)
  • Bisaloo (1)
Top Labels
Issue Labels
Pull Request Labels
dependencies (14) docker (9) github_actions (5)