Task view not being update
Closed this issue · 4 comments
boshek commented
@zeileis I am noticing that the task view is not being updated with new changes. Any ideas on that?
zeileis commented
Why do you think it isn't updated? The version on CRAN looks up-to-date to me:
github <- readLines("https://raw.githubusercontent.com/cran-task-views/Hydrology/refs/heads/main/Hydrology.md")
cran <- readLines("https://cran.r-project.org/web/views/Hydrology.md")
all.equal(github, cran)
## [1] TRUE
identical(github, cran)
## [1] TRUE
A cronjob runs once per day and pulls the latest version of the .md from the main branch and updates the CRAN version correspondingly.
boshek commented
zeileis commented
That's the version number you assign in the .md: https://github.com/cran-task-views/Hydrology/blob/main/Hydrology.md?plain=1#L6
This is not changed automatically.
boshek commented
Ok thanks for that. I think I will try to automate that.