Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trigger CI checks when PR is marked as ready for review #10707

Merged
merged 1 commit into from Dec 16, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/cross-version-tests.yml
Expand Up @@ -2,6 +2,11 @@ name: Cross version tests

on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
workflow_dispatch:
inputs:
repository:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/deployments.yml
Expand Up @@ -2,6 +2,11 @@ name: Deployments

on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
push:
branches:
- master
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/devcontainer.yml
Expand Up @@ -5,6 +5,11 @@ on:
branches:
- "master"
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
paths:
- .devcontainer/**

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/examples.yml
Expand Up @@ -2,6 +2,11 @@ name: Examples

on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
schedule:
# Run this action daily at 13:00 UTC
- cron: "0 13 * * *"
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/gateway.yml
Expand Up @@ -2,6 +2,11 @@ name: ⛩ Gateway ⛩

on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
push:
branches:
- master
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/js.yml
Expand Up @@ -9,6 +9,11 @@ on:
- master
- branch-[0-9]+.[0-9]+
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
paths:
- mlflow/server/js/**
- .github/workflows/js.yml
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/lint.yml
Expand Up @@ -2,6 +2,11 @@ name: Lint

on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
push:
branches:
- master
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/master.yml
Expand Up @@ -2,6 +2,11 @@ name: MLflow tests

on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
push:
branches:
- master
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/protect.yml
Expand Up @@ -2,6 +2,11 @@ name: Protect

on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
push:
branches:
- master
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/protos.yml
Expand Up @@ -2,6 +2,11 @@ name: Protos

on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
paths:
- mlflow/protos/**
- mlflow/java/client/src/main/java/com/databricks/api/proto/**
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/r.yml
Expand Up @@ -6,6 +6,11 @@ on:
- master
- branch-[0-9]+.[0-9]+
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
schedule:
# Run this workflow daily at 13:00 UTC
- cron: "0 13 * * *"
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/recipe.yml
Expand Up @@ -2,6 +2,11 @@ name: Recipe tests

on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
push:
branches:
- master
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-note.yml
Expand Up @@ -8,6 +8,7 @@ on:
- opened
- synchronize
- reopened
- ready_for_review
- labeled
- unlabeled
# post-merge job requires write access to add a label and post a comment.
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/requirements.yml
Expand Up @@ -2,6 +2,11 @@ name: Test requirements

on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
paths:
- requirements/core-requirements.yaml
- requirements/skinny-requirements.yaml
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test-package-build.yml
Expand Up @@ -6,6 +6,11 @@ on:
- master
- branch-[0-9]+.[0-9]+
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review

permissions:
contents: read
Expand Down