From 14b60df8fc1977c7e36c41ad11e6359fb11d86ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20VERDO=C3=8FA?= Date: Sat, 4 Oct 2025 12:17:15 +0200 Subject: [PATCH] Run GitHub Actions on all pushed branches, not only `main` This permits the main and fork repository to verify that everything is fine before opening a pull request. --- .github/workflows/go.yml | 1 - .github/workflows/golangci-lint.yml | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index ec79e13..059b467 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -2,7 +2,6 @@ name: Go on: push: - branches: [ main ] pull_request: branches: [ main ] diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 5edb155..990787a 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -5,8 +5,7 @@ on: tags: - v* branches: - - master - - main + - "**" pull_request: jobs: