From 0da5ac79182672314a1ada1c6a94c422c08cea1e Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Fri, 19 Apr 2024 14:43:45 -0400 Subject: [PATCH] ci: Build CI for all feature branches --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fbadd6b..bca4092 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,11 +2,11 @@ name: Quality control checks on: push: - branches: [ main ] + branches: [ main, 'feat/**' ] paths-ignore: - '**.md' # Do not need to run CI for markdown changes. pull_request: - branches: [ main ] + branches: [ main, 'feat/**' ] paths-ignore: - '**.md'