From c6d009dbfa7a7625101733b9f4b283d78b94a5ab Mon Sep 17 00:00:00 2001 From: Mathias Beaulieu-Duncan Date: Mon, 2 Feb 2026 09:57:26 -0500 Subject: [PATCH] Trigger update-check on push to its own file Replace workflow_dispatch (not supported in our Gitea version) with push trigger scoped to the workflow file path. Pushing any change to update-check.yaml will trigger a run. Co-Authored-By: Claude Opus 4.5 --- .gitea/workflows/update-check.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/update-check.yaml b/.gitea/workflows/update-check.yaml index fa12328..15ae061 100644 --- a/.gitea/workflows/update-check.yaml +++ b/.gitea/workflows/update-check.yaml @@ -4,7 +4,9 @@ on: schedule: # Daily at 8am UTC - cron: '0 8 * * *' - workflow_dispatch: + push: + paths: + - '.gitea/workflows/update-check.yaml' permissions: contents: read