From 4013bd440ddba8b609750d1bca0020fdbaaeeff3 Mon Sep 17 00:00:00 2001 From: Waldir Leoncio Date: Mon, 9 Oct 2023 10:24:14 +0200 Subject: [PATCH] Added release branches to CI triggers --- .github/workflows/build.yml | 2 +- .github/workflows/linter.yml | 2 +- .github/workflows/test-coverage.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 79edc16..08bb905 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,7 +2,7 @@ # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help on: push: - branches: [dev, master] + branches: [dev, master, release-*] pull_request: branches: [dev, master] diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 809f516..725d84c 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -2,7 +2,7 @@ # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help on: push: - branches: [dev, master] + branches: [dev, master, release-*] pull_request: branches: [dev, master] diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml index 08290b5..ad62d53 100644 --- a/.github/workflows/test-coverage.yaml +++ b/.github/workflows/test-coverage.yaml @@ -2,7 +2,7 @@ # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help on: push: - branches: [dev, master] + branches: [dev, master, release-*] pull_request: branches: [dev, master]