From 08a3359e941f2d473083f7a1a17db87c88923f06 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Tue, 4 Oct 2022 14:12:50 -0700 Subject: [PATCH] Run stubsabot daily, not weekly (#8845) I think stubsabot has been a really big success. Let's change it to a daily workflow, so that we don't get an avalanche of PRs every Friday, and so that we can see more quickly if a PR changing stubsabot has accidentally broken the script. (If that _does_ happen, it should be pretty easy to just revert the commit that accidentally broke stubsabot, and go back to a version that works pretty well.) --- .github/workflows/stubsabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stubsabot.yml b/.github/workflows/stubsabot.yml index d43cbef53..0a0756b3c 100644 --- a/.github/workflows/stubsabot.yml +++ b/.github/workflows/stubsabot.yml @@ -1,9 +1,9 @@ -name: Run stubsabot weekly # TODO: change to daily +name: Run stubsabot daily on: workflow_dispatch: schedule: - - cron: "0 0 * * 5" # TODO: change to daily + - cron: "0 0 * * *" permissions: contents: write