From 1b9f9d7a443e1c30fb6d3ae5b265472563879b5d Mon Sep 17 00:00:00 2001 From: Karan Gathani Date: Thu, 16 Apr 2026 14:41:35 -0700 Subject: [PATCH] Use workflow_dispatch instead of cron schedule Remove the weekly cron trigger (every Monday at 08:00) and add workflow_dispatch so the workflow can be triggered manually or remotely (e.g., from rstudio/shinycoreci). Keeps existing branch and pull_request triggers intact. --- .github/workflows/R-CMD-check.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index 824a512..43e9415 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -7,8 +7,8 @@ on: branches: [main, rc-**] pull_request: branches: [main] - schedule: - - cron: '0 8 * * 1' # every monday +# Triggered remotely from rstudio/shinycoreci. + workflow_dispatch: name: Package checks