diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 758a897f8aa8..913028cab9d3 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -11,7 +11,7 @@ on: type: boolean default: false push: - branches: ['antalya', 'releases/*', 'antalya-*'] + branches: ['antalya', 'releases/*', 'antalya-*', 'stable-*'] tags: ['*'] env: diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 425581b3cd0a..522e754f8593 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -11,7 +11,7 @@ on: type: boolean default: false pull_request: - branches: ['antalya', 'releases/*', 'antalya-*'] + branches: ['antalya', 'releases/*', 'antalya-*', 'stable-*'] env: # Force the stdout and stderr streams to be unbuffered diff --git a/ci/workflows/master.py b/ci/workflows/master.py index 09998751da7d..bde9bef29e37 100644 --- a/ci/workflows/master.py +++ b/ci/workflows/master.py @@ -8,7 +8,7 @@ workflow = Workflow.Config( name="MasterCI", event=Workflow.Event.PUSH, - branches=[BASE_BRANCH, "releases/*", "antalya-*"], + branches=[BASE_BRANCH, "releases/*", "antalya-*", "stable-*"], tags=["*"], jobs=[ # *JobConfigs.tidy_build_arm_jobs, diff --git a/ci/workflows/pull_request.py b/ci/workflows/pull_request.py index d42ad12c00a1..da4a32154ed9 100644 --- a/ci/workflows/pull_request.py +++ b/ci/workflows/pull_request.py @@ -23,7 +23,7 @@ workflow = Workflow.Config( name="PR", event=Workflow.Event.PULL_REQUEST, - base_branches=[BASE_BRANCH, "releases/*", "antalya-*"], + base_branches=[BASE_BRANCH, "releases/*", "antalya-*", "stable-*"], jobs=[ # JobConfigs.style_check, # NOTE (strtgbb): we don't run style check # JobConfigs.docs_job, # NOTE (strtgbb): we don't build docs