You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by ab...@apache.org on 2023/04/12 12:55:20 UTC

[druid] branch 26.0.0 updated: Fix GHA CI branch trigger patterns (#14067) (#14072)

This is an automated email from the ASF dual-hosted git repository.

abhishek pushed a commit to branch 26.0.0
in repository https://gitbox.apache.org/repos/asf/druid.git


The following commit(s) were added to refs/heads/26.0.0 by this push:
     new 5cceec8337 Fix GHA CI branch trigger patterns (#14067) (#14072)
5cceec8337 is described below

commit 5cceec833726cce77311c352fd82922d09069d89
Author: Clint Wylie <cw...@apache.org>
AuthorDate: Wed Apr 12 05:55:12 2023 -0700

    Fix GHA CI branch trigger patterns (#14067) (#14072)
    
    Backport of #14067 to 26.0.0.
---
 .github/workflows/cron-job-its.yml                       | 3 ++-
 .github/workflows/static-checks.yml                      | 6 ++++--
 .github/workflows/unit-and-integration-tests-unified.yml | 6 ++++--
 3 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/cron-job-its.yml b/.github/workflows/cron-job-its.yml
index 1999359708..02f4229216 100644
--- a/.github/workflows/cron-job-its.yml
+++ b/.github/workflows/cron-job-its.yml
@@ -22,7 +22,8 @@ on:
       - 'owasp-dependency-check-suppressions.xml'
     branches:
       - master
-      - /^\d+\.\d+\.\d+(-\S*)?$/ # release branches
+      - '[0-9]+.[0-9]+.[0-9]+' # release branches
+      - '[0-9]+.[0-9]+.[0-9]+-[A-Za-z0-9]+' # release branches
 
 jobs:
   build:
diff --git a/.github/workflows/static-checks.yml b/.github/workflows/static-checks.yml
index cc5ded8deb..08f8107646 100644
--- a/.github/workflows/static-checks.yml
+++ b/.github/workflows/static-checks.yml
@@ -18,11 +18,13 @@ on:
   push:
     branches:
       - master
-      - /^\d+\.\d+\.\d+(-\S*)?$/ # release branches
+      - '[0-9]+.[0-9]+.[0-9]+' # release branches
+      - '[0-9]+.[0-9]+.[0-9]+-[A-Za-z0-9]+' # release branches
   pull_request:
     branches:
       - master
-      - /^\d+\.\d+\.\d+(-\S*)?$/ # release branches
+      - '[0-9]+.[0-9]+.[0-9]+' # release branches
+      - '[0-9]+.[0-9]+.[0-9]+-[A-Za-z0-9]+' # release branches
 
 concurrency:
   group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
diff --git a/.github/workflows/unit-and-integration-tests-unified.yml b/.github/workflows/unit-and-integration-tests-unified.yml
index b899ab0740..20025c3365 100644
--- a/.github/workflows/unit-and-integration-tests-unified.yml
+++ b/.github/workflows/unit-and-integration-tests-unified.yml
@@ -24,7 +24,8 @@ on:
       - '**/*.md'
     branches:
       - master
-      - /^\d+\.\d+\.\d+(-\S*)?$/ # release branches
+      - '[0-9]+.[0-9]+.[0-9]+' # release branches
+      - '[0-9]+.[0-9]+.[0-9]+-[A-Za-z0-9]+' # release branches
   pull_request:
     paths-ignore:
       - 'docs/**'
@@ -34,7 +35,8 @@ on:
       - '**/*.md'
     branches:
       - master
-      - /^\d+\.\d+\.\d+(-\S*)?$/ # release branches
+      - '[0-9]+.[0-9]+.[0-9]+' # release branches
+      - '[0-9]+.[0-9]+.[0-9]+-[A-Za-z0-9]+' # release branches
 
 concurrency:
   group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org