-
Notifications
You must be signed in to change notification settings - Fork 4
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
Fix/cran status issues duplicates #53
Fix/cran status issues duplicates #53
Conversation
} | ||
} else { | ||
print(paste("ERROR ACCESSING URL=", url)) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's fix the styling here. Use the styler
R package to fix it.
@@ -0,0 +1,2 @@ | |||
#!/usr/bin/env bash | |||
Rscript /app/check-status.R --status_types "${INPUT_STATUS_TYPES}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rscript /app/check-status.R --status_types "${INPUT_STATUS_TYPES}" | |
Rscript /app/check-status.R --status_types "${INPUT_STATUSES}" | |
This will align with the input being renamed to statuses
.github/workflows/cran-status.yml
Outdated
@@ -14,12 +14,12 @@ on: | |||
default: '' | |||
required: false | |||
type: string | |||
status-types: | |||
status_types: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why does this need to change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe let's rename this to statuses
, so that we don't have to worry about -
vs _
) | ||
} | ||
|
||
build_md5_codes <- function(pkg, errors, step) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename this to compute_md5_hash
.github/workflows/cran-status.yml
Outdated
@@ -14,12 +14,12 @@ on: | |||
default: '' | |||
required: false | |||
type: string | |||
status-types: | |||
status_types: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe let's rename this to statuses
, so that we don't have to worry about -
vs _
Closing |
No description provided.