Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

workflow-telemetry-action says repository not found #133

Open
vvyas-arcus opened this issue Aug 22, 2024 · 0 comments
Open

workflow-telemetry-action says repository not found #133

vvyas-arcus opened this issue Aug 22, 2024 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@vvyas-arcus
Copy link

vvyas-arcus commented Aug 22, 2024

1. Bug description

I am trying to integrate in a basic R project, I have set GITHUB_TOKEN secret in Github, and left everything else as default in rworkflows.yml file.

Console output

I get this for all 3 VM images.
 
Current runner version: '2.319.1'
Operating System
Runner Image
Runner Image Provisioner
GITHUB_TOKEN Permissions
Secret source: Actions
Prepare workflow directory
Prepare all required actions
Getting action download info
Download action repository 'neurogenomics/rworkflows@master' (SHA:30139680368b7f882d1a3bf83c2a3a87db58e632)
Getting action download info
Error: Unable to resolve action. Repository not found: runforesight/workflow-telemetry-action
 


# Paste console output here (e.g. from R/python/command line)

Expected behaviour

I was assuming atleast the container would download and run and awaiting any of my scripts to get flagged

2. Reproducible example

Code

rworkflows.yml under .github/workflows folder

name: rworkflows
'on':
push:
branches:
- master
- main
- devel
- RELEASE_**
pull_request:
branches:
- master
- main
- devel
- RELEASE_**
jobs:
rworkflows:
permissions: write-all
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
container: ${{ matrix.config.cont }}
strategy:
fail-fast: ${{ false }}
matrix:
config:
- os: ubuntu-latest
bioc: devel
r: auto
cont: ghcr.io/bioconductor/bioconductor_docker:RELEASE_3_18
rspm: ~
- os: macOS-latest
bioc: release
r: auto
cont: ~
rspm: ~
- os: windows-latest
bioc: release
r: auto
cont: ~
rspm: ~
steps:
- uses: neurogenomics/rworkflows@master
with:
run_bioccheck: ${{ false }}
run_rcmdcheck: ${{ true }}
as_cran: ${{ true }}
run_vignettes: ${{ true }}
has_testthat: ${{ true }}
run_covr: ${{ true }}
run_pkgdown: ${{ true }}
has_runit: ${{ false }}
has_latex: ${{ false }}
GITHUB_TOKEN: ${{ secrets.GH_Token }}
run_docker: ${{ false }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
runner_os: ${{ runner.os }}
cache_version: cache-v1
docker_registry: ghcr.io

# Testing with Hello world for the moment. 

#!/usr/bin/env Rscript
hello_world <- function(){
  print('Hello World!')
}

hello_world()

Data

(If possible, upload a small sample of your data so that we can reproduce the bug on our end. If that's not possible, please at least include a screenshot of your data and other relevant details.)

3. Session info

(Add output of the R function utils::sessionInfo() below. This helps us assess version/OS conflicts which could be causing bugs.)

# Paste utils::sessionInfo() output 

I am going to modify parameters of use_workflow to see if I can get steps other than code coverage or telemetry working.

@vvyas-arcus vvyas-arcus added the bug Something isn't working label Aug 22, 2024
@bschilder bschilder self-assigned this Sep 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants