From 009a96491f10146bd2dbe8e238a15b82c8de781e Mon Sep 17 00:00:00 2001 From: Kyle Aure Date: Thu, 27 Jun 2024 17:08:15 -0500 Subject: [PATCH] Ensure pulls and merges to service branches run CI build --- .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 ade426a22..7d8370eaf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,9 +5,13 @@ name: Java CI with Maven on: push: - branches: [ "main" ] + branches: + - 'main' + - 'RELEASE-*' pull_request: - branches: [ "main" ] + branches: + - 'main' + - 'RELEASE-*' permissions: contents: read