cran-task-views / Hydrology

CRAN Task View: Hydrology
https://CRAN.R-project.org/view=Hydrology
127 stars 52 forks source link

Task view not being update #174

Closed boshek closed 3 minutes ago

boshek commented 3 hours ago

@zeileis I am noticing that the task view is not being updated with new changes. Any ideas on that?

zeileis commented 2 hours ago

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 2 hours ago

Ah ok. Any idea why the date is not updated then?

image
zeileis commented 1 hour ago

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 3 minutes ago

Ok thanks for that. I think I will try to automate that.