Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
type: boolean
default: false
push:
branches: ['antalya', 'releases/*', 'antalya-*']
branches: ['antalya', 'releases/*', 'antalya-*', 'stable-*']
tags: ['*']

env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ci/workflows/master.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion ci/workflows/pull_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading