From fd14f6ff73824b58d6cefc00c36268a63960a1b0 Mon Sep 17 00:00:00 2001 From: Aofei Sheng Date: Mon, 8 Jul 2024 17:32:13 +0800 Subject: [PATCH] ci: update go.yml workflow to trigger on pushes and PRs to any branches This update enables GitHub Actions in forks, streamlining development and testing. --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index f78917aa..6dd164cb 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -5,9 +5,9 @@ name: Go on: push: - branches: [ "main" ] + branches: [ "*" ] pull_request: - branches: [ "main" ] + branches: [ "*" ] jobs: