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
7 changes: 6 additions & 1 deletion .github/workflows/docs-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@ name: Check docs

on:
push:
branches: ["main"]
branches:
- main
- release/**
pull_request:
branches:
- main
- release/**
paths:
- docs/**
- .github/workflows/docs-check.yml
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/java-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
# Trigger on published to include both stable and preview/beta releases
types: [published]
pull_request:
branches:
- main
- release/**
paths:
- .github/workflows/java-publish.yml
workflow_dispatch:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ on:
push:
branches:
- main
- release/**
pull_request:
branches:
- main
- release/**
paths:
- java/**
- rust/**
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/license-header-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ on:
push:
branches:
- main
- release/**
pull_request:
branches:
- main
- release/**
paths:
- rust/**
- python/**
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/notebook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ on:
push:
branches:
- main
- release/**
pull_request:
branches:
- main
- release/**
paths:
- python/**
- rust/**
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ on:
default: true
type: boolean
pull_request:
branches:
- main
- release/**
paths:
- ".github/workflows/pypi-publish.yml"
- ".github/workflows/build_linux_wheel/**"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ on:
push:
branches:
- main
- release/**
pull_request:
branches:
- main
- release/**
paths:
- Cargo.*
- python/**
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/rust-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
schedule:
- cron: "0 9 * * *" # 9AM UTC = 2AM PST
pull_request:
branches:
- main
- release/**
paths:
- ".github/workflows/rust-benchmark.yml"

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ on:
push:
branches:
- main
- release/**
pull_request:
branches:
- main
- release/**
paths:
- rust/**
- protos/**
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/typos.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Typo checker
on: [pull_request]
on:
pull_request:
branches:
- main
- release/**

jobs:
run:
Expand Down
Loading