This causes the R CMD check job in check.yaml workflow to take precedence over the R CMD check job (for stable package versions) in docs.yaml workflow (which is responsible for checking the Catalog prior to rendering it for stable package versions). The R CMD check job in docs.yaml is then cancelled and the Catalog will not be rendered for stable package versions even if the R CMD check succeeded.
The proposed solution is to only run the R CMD check job in docs.yaml on push to main.
When merging/pushing to
main
, bothcheck.yaml
anddocs.yaml
workflows run.Example:
check.yaml
anddocs.yaml
.This causes the R CMD check job in
check.yaml
workflow to take precedence over the R CMD check job (for stable package versions) indocs.yaml
workflow (which is responsible for checking the Catalog prior to rendering it for stable package versions). The R CMD check job indocs.yaml
is then cancelled and the Catalog will not be rendered for stable package versions even if the R CMD check succeeded.The proposed solution is to only run the R CMD check job in
docs.yaml
on push tomain
.