From 1a05764e11488d678f926fbe2ccb89e92f625562 Mon Sep 17 00:00:00 2001 From: Joao Machado <13315199+machadoit@users.noreply.github.com> Date: Thu, 27 Mar 2025 10:42:30 +0100 Subject: [PATCH] fix: Run the action for all branches As it was using glob to match, would ignore branches like fix/something --- .github/workflows/go.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 5bb288c2..d4902e99 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,6 +1,4 @@ -on: - push: - branches: ['*'] +on: push permissions: contents: write