From 1f2d42e1d59884c3a08ec5bdd46590558231de6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Fri, 24 Oct 2025 23:43:11 +0200 Subject: [PATCH] Update release workflow to include `pull_request_target` event and specify branches --- .gitea/workflows/release/check.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release/check.yaml b/.gitea/workflows/release/check.yaml index 457f8dc..501ecc5 100644 --- a/.gitea/workflows/release/check.yaml +++ b/.gitea/workflows/release/check.yaml @@ -2,9 +2,14 @@ name: Check go code on: push: - branches: * + branches: + - '**' pull_request: - branches: * + branches: + - '**' + pull_request_target: + branches: + - '**' jobs: build-and-release: