From fdc7b173fcbabf8c8db66c25f1c6ddcf30802a18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anssi=20Syrj=C3=A4salo?= Date: Mon, 29 Jul 2024 01:07:00 +0300 Subject: [PATCH] ci(workflows): Update CI to trigger on debug branch Added the debug branch to the list of branches that trigger CI workflows. --- .github/workflows/atest.yml | 2 +- .github/workflows/build.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/atest.yml b/.github/workflows/atest.yml index 1e7e7e8..d6ef40d 100644 --- a/.github/workflows/atest.yml +++ b/.github/workflows/atest.yml @@ -2,7 +2,7 @@ name: Acceptance tests on: push: - branches: [master] + branches: [master,debug] pull_request: branches: [master] diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 55fc94c..e5ae64d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,7 +2,7 @@ name: Build packages on: push: - branches: [master] + branches: [master,debug] pull_request: branches: [master] diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 89785ec..21c6e12 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,7 @@ name: Unit tests on: push: - branches: [master] + branches: [master,debug] pull_request: branches: [master]