From bec9fe6f4aa908db855a703f3e318409379cfdbe Mon Sep 17 00:00:00 2001 From: Madison Grubb Date: Thu, 13 Aug 2026 10:31:13 -0400 Subject: [PATCH] keep the hourly schedule Reverts the cron change and fixes the README, which claimed every 6 hours while the workflow ran hourly. --- .gitea/workflows/renovate.yml | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/renovate.yml b/.gitea/workflows/renovate.yml index 766500d..85f8af7 100644 --- a/.gitea/workflows/renovate.yml +++ b/.gitea/workflows/renovate.yml @@ -3,7 +3,7 @@ name: Renovate on: workflow_dispatch: schedule: - - cron: "0 */6 * * *" + - cron: "0 * * * *" jobs: renovate: diff --git a/README.md b/README.md index 285e891..754140a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Renovate + Gitea Actions for Gitea -This repo runs [Renovate](https://docs.renovatebot.com/) via **Gitea Actions**, currently every 6 hours. Renovate autodiscovers all Gitea repositories the bot user can access and opens PRs for dependency updates. +This repo runs [Renovate](https://docs.renovatebot.com/) via **Gitea Actions**, currently every hour. Renovate autodiscovers all Gitea repositories the bot user can access and opens PRs for dependency updates. ## How it works @@ -13,13 +13,13 @@ This repo runs [Renovate](https://docs.renovatebot.com/) via **Gitea Actions**, ### 1. Gitea Actions workflow & schedule -The workflow lives in `.gitea/workflows/renovate.yml` and currently runs every 6 hours: +The workflow lives in `.gitea/workflows/renovate.yml` and currently runs every hour: ```yaml on: workflow_dispatch: schedule: - - cron: "0 */6 * * *" + - cron: "0 * * * *" ``` To change the schedule (e.g. daily or weekly), edit the cron expression there and push a commit.