From fcb51f1abe1c0ea0367ee71c790fcdef60fd1160 Mon Sep 17 00:00:00 2001 From: mikebender Date: Thu, 20 Feb 2025 10:16:08 -0500 Subject: [PATCH] ci: Enable workflows on release/v0.13 branch when changes are submitted - Workflow in that branch was not triggered on pull requests to release branches --- .github/workflows/node.js.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 819108579c..3b7860f6af 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -5,9 +5,15 @@ name: Node.js CI on: push: - branches: [main] + branches: + - main + - 'release/**' + - 'feature/**' pull_request: - branches: [main] + branches: + - main + - 'release/**' + - 'feature/**' jobs: build: