From cdfffa1cba80e5dc1f3849ec3af177ee664722de Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Tue, 29 Aug 2023 12:34:44 -0700 Subject: [PATCH] Enable CI for feature branches --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f814f5906..0326fa062 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,9 +4,13 @@ name: CI # events but only for the master branch on: push: - branches: [ master ] + branches: + - master + - 'feature/**' pull_request: - branches: [ master ] + branches: + - master + - 'feature/**' jobs: test: