From e0cb337538efe8dbe07b963ea575afec0e373671 Mon Sep 17 00:00:00 2001 From: rob thijssen Date: Mon, 11 May 2026 19:03:07 +0300 Subject: [PATCH] fix(ci): reduce poll frequency to hourly and stop cancelling prerelease builds The 15-minute poll interval was re-dispatching builds before they could finish. The prerelease workflow had cancel-in-progress: true which cancelled the running build each time. Change poll to hourly and set cancel-in-progress: false on prerelease builds so they run to completion. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/build-prerelease.yml | 2 +- .gitea/workflows/poll-upstream.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build-prerelease.yml b/.gitea/workflows/build-prerelease.yml index 2f4a435..7225c91 100644 --- a/.gitea/workflows/build-prerelease.yml +++ b/.gitea/workflows/build-prerelease.yml @@ -22,7 +22,7 @@ on: concurrency: group: prerelease-build - cancel-in-progress: true + cancel-in-progress: false jobs: build: diff --git a/.gitea/workflows/poll-upstream.yml b/.gitea/workflows/poll-upstream.yml index a3c5974..ca2b79c 100644 --- a/.gitea/workflows/poll-upstream.yml +++ b/.gitea/workflows/poll-upstream.yml @@ -2,7 +2,7 @@ name: poll-upstream on: schedule: - - cron: "*/15 * * * *" + - cron: "0 * * * *" workflow_dispatch: {} concurrency: