From 8a6a79abb88a7aa0b6f27490ae234b18ffed0971 Mon Sep 17 00:00:00 2001 From: Jochen Ullrich Date: Mon, 4 Nov 2024 23:25:57 +0100 Subject: [PATCH] fix: Limit github actions to master branch --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aa25a55..c21b19c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,9 @@ on: push: - pull_request: - branches: [master] + tags: + - "*" + branches: + - "master" permissions: contents: write