From a8c50b428bfbc7cc077a521fb24e22b659d37015 Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Sat, 7 Dec 2024 10:15:23 +0100 Subject: [PATCH] Enable workflow for bug branches Previously, the workflow was triggered only for pushes to the main branch. This update allows the workflow to also trigger for pushes to any branches matching the 'bug/*' pattern, facilitating better bug fix management. --- .github/workflows/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index e84dc333..d05fedaf 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -4,6 +4,7 @@ on: push: branches: - 'main' + - 'bug/*' release: types: [ prereleased, published ] env: