From 6d84fff5b6c44d6a213b826a42b4e77729504adc Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Tue, 23 Apr 2024 13:01:21 -0400 Subject: [PATCH] chore: Enable 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'