From 18d692a986ab3493d90f0c31df60d5ec7e31eb78 Mon Sep 17 00:00:00 2001 From: Ville Vesilehto Date: Thu, 9 Apr 2026 12:53:57 +0300 Subject: [PATCH] ci: limit push trigger to master branch (#8033) --- .github/workflows/go.test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.test.yml b/.github/workflows/go.test.yml index aef51ecde..6c92813df 100644 --- a/.github/workflows/go.test.yml +++ b/.github/workflows/go.test.yml @@ -1,5 +1,9 @@ name: Go Tests -on: [push, pull_request] +on: + push: + branches: + - master + pull_request: permissions: contents: read