From 95dec3d6526959a08d6540434f869754092fe590 Mon Sep 17 00:00:00 2001 From: rob thijssen Date: Fri, 24 Apr 2026 10:54:09 +0300 Subject: [PATCH] fix(ci): grant actions write permission to poll-upstream workflow The automatic GITEA_TOKEN lacks actions:write by default, causing a 422 when dispatching the build-release workflow. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/poll-upstream.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/poll-upstream.yml b/.gitea/workflows/poll-upstream.yml index a6834fb..892f5ac 100644 --- a/.gitea/workflows/poll-upstream.yml +++ b/.gitea/workflows/poll-upstream.yml @@ -5,6 +5,9 @@ on: - cron: "*/1 * * * *" workflow_dispatch: {} +permissions: + actions: write + jobs: check: runs-on: fedora