From 21968b316590f2194110fa168e1044e011f78235 Mon Sep 17 00:00:00 2001 From: richelbilderbeek Date: Fri, 14 Jul 2023 08:47:24 +0200 Subject: [PATCH] cron at the right day --- .github/workflows/build_pdf.yaml | 4 ++-- .github/workflows/check_links.yaml | 2 +- .github/workflows/test_code.yaml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_pdf.yaml b/.github/workflows/build_pdf.yaml index 48ab7c0..92e05a3 100644 --- a/.github/workflows/build_pdf.yaml +++ b/.github/workflows/build_pdf.yaml @@ -1,8 +1,8 @@ -# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag. -# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions on: push: pull_request: + schedule: + - cron: "0 0 2 * *" name: Build PDF document diff --git a/.github/workflows/check_links.yaml b/.github/workflows/check_links.yaml index 2ab10e0..6a60151 100644 --- a/.github/workflows/check_links.yaml +++ b/.github/workflows/check_links.yaml @@ -2,7 +2,7 @@ on: push: pull_request: schedule: - - cron: "0 0 12 * *" + - cron: "0 0 2 * *" name: check-links diff --git a/.github/workflows/test_code.yaml b/.github/workflows/test_code.yaml index 91e6b6d..033bd04 100644 --- a/.github/workflows/test_code.yaml +++ b/.github/workflows/test_code.yaml @@ -1,8 +1,8 @@ -# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag. -# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions on: push: pull_request: + schedule: + - cron: "0 0 2 * *" name: test_code