From 6191577648075b6e982d037231ad9333a5eaa8ca Mon Sep 17 00:00:00 2001 From: Gunasekhar Matamalam Date: Fri, 20 Sep 2024 17:00:05 -0700 Subject: [PATCH] run the action every hour Signed-off-by: Gunasekhar Matamalam --- .github/workflows/publish.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0f7dcb67d..4fec72624 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,5 +1,9 @@ name: Rancher product documentation - publish to GitHub Pages with Lunr Search Extension on: + # Runs every hour. + schedule: + - cron: '0 * * * *' + # Runs whenever a change is pushed to the main branch push: branches: [main] # Allows you to run this workflow manually from the Actions tab