From b60a4bc20c763f9d49372bb7cfe46f0dec22a655 Mon Sep 17 00:00:00 2001 From: Michael Edgar Date: Tue, 1 Oct 2024 11:09:38 -0400 Subject: [PATCH] Run integration and snapshot jobs on non-feature branches Signed-off-by: Michael Edgar --- .github/workflows/integration.yml | 8 ++++++-- .github/workflows/snapshot.yml | 4 +++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 4d1ebab4d..3fc1bb9cc 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -1,9 +1,13 @@ name: Build on: push: - branches: [ 'main' ] + branches: + - 'main' + - '[0-9]+.[0-9]+.x' pull_request: - branches: [ 'main' ] + branches: + - 'main' + - '[0-9]+.[0-9]+.x' types: [ opened, reopened, synchronize ] jobs: diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml index afcb99ab0..2e0bf4d8c 100644 --- a/.github/workflows/snapshot.yml +++ b/.github/workflows/snapshot.yml @@ -2,7 +2,9 @@ name: Publish Snapshot on: push: - branches: [ 'main' ] + branches: + - 'main' + - '[0-9]+.[0-9]+.x' paths-ignore: - '.github/project.yml'