From 142e20c6d3a5faa665ffe8db74e9c125a1ca6c1d Mon Sep 17 00:00:00 2001 From: Andy Bonventre Date: Wed, 15 Jul 2026 08:45:27 -0400 Subject: [PATCH] ci: rebuild the site on repository_dispatch from product repos Product repos can now fire a docs-updated event to trigger an immediate rebuild instead of waiting for the daily cron. --- .github/workflows/deploy.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9776904..2daac24 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -9,6 +9,10 @@ on: # there without a corresponding push to this repo. schedule: - cron: '17 9 * * *' + # Product repos fire this when their docs change, so the site rebuilds + # immediately instead of waiting for the daily schedule above. + repository_dispatch: + types: [docs-updated] permissions: contents: read