From 0a7007cf45c412041b17f38fa8dc3631e3e9b98d Mon Sep 17 00:00:00 2001 From: Ulises Gascon Date: Sun, 22 Feb 2026 11:06:51 +0100 Subject: [PATCH] fix: adjust cron schedule to 23:00 UTC to allow retro PR merge The retrospective PR was not being included in the feed because the action triggered at 00:00 before the PR could be merged. Moving to 23:00 gives the whole day for the retrospective to be merged. --- .github/workflows/populate_feed.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/populate_feed.yml b/.github/workflows/populate_feed.yml index 6a95bca04..2dd61cd12 100644 --- a/.github/workflows/populate_feed.yml +++ b/.github/workflows/populate_feed.yml @@ -1,7 +1,7 @@ on: workflow_dispatch: schedule: - - cron: '0 0 * * 0' + - cron: '0 23 * * 0' name: Populate Feed