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/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ concurrency:
jobs:
# Build job for multi-architecture Docker images
build_multiarch:
if: github.repository == 'vllm-project/semantic-router'
if: github.repository == 'vllm-project/semantic-router' && !github.event.pull_request.draft
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/helm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Publish Helm Chart

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
paths:
Expand All @@ -22,6 +23,7 @@ env:
jobs:
validate-and-package:
name: Validate and Package
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/integration-test-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Integration Test [Docker Compose]

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
paths-ignore:
Expand All @@ -21,7 +22,7 @@ concurrency:

jobs:
test-quickstart:
if: github.repository == 'vllm-project/semantic-router'
if: github.repository == 'vllm-project/semantic-router' && !github.event.pull_request.draft
runs-on: ubuntu-latest
timeout-minutes: 30

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/integration-test-dynamic-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Integration Test [Dynamic Config]

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
paths-ignore:
Expand All @@ -21,6 +22,7 @@ concurrency:

jobs:
integration-test:
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest
timeout-minutes: 180

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/integration-test-helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- 'website/**'
- '**/*.md'
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
paths-ignore:
Expand All @@ -30,6 +31,7 @@ jobs:
# Lint and validate Helm chart
lint-chart:
name: Lint Helm Chart
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/integration-test-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Integration Test [Kubernetes]

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
paths-ignore:
Expand All @@ -21,6 +22,7 @@ concurrency:

jobs:
integration-test:
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest
timeout-minutes: 75
strategy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/owner-notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Owner Notification

on:
pull_request_target:
types: [assigned, opened, reopened, synchronize]
types: [assigned, opened, reopened, synchronize, ready_for_review]

jobs:
notify-owners:
if: ${{ github.repository == 'vllm-project/semantic-router' }}
if: ${{ github.repository == 'vllm-project/semantic-router' && !github.event.pull_request.draft }}
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/precommit-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
paths:
- 'Dockerfile.precommit'
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths:
- 'Dockerfile.precommit'

Expand All @@ -14,7 +15,7 @@ concurrency:

jobs:
build_and_push:
if: github.repository == 'vllm-project/semantic-router'
if: github.repository == 'vllm-project/semantic-router' && !github.event.pull_request.draft
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Test And Build

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
push:
Expand All @@ -24,13 +25,14 @@ jobs:
test-and-build:
needs: changes
if: >-
${{ github.event_name == 'schedule'
${{ !github.event.pull_request.draft
&& (github.event_name == 'schedule'
|| needs.changes.outputs.core == 'true'
|| needs.changes.outputs.helm == 'true'
|| needs.changes.outputs.e2e == 'true'
|| needs.changes.outputs.docker == 'true'
|| needs.changes.outputs.make == 'true'
|| needs.changes.outputs.ci == 'true' }}
|| needs.changes.outputs.ci == 'true') }}
runs-on: ubuntu-latest

steps:
Expand Down
Loading