Skip to content

Commit

Permalink
Add skip condition for prepare-release branches
Browse files Browse the repository at this point in the history
  • Loading branch information
sanchariGr committed Dec 5, 2024
1 parent 6fa48a0 commit dc652d2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ jobs:

rasa-sdk-dev-docker-image:
name: Build dev Docker image
if: "!startsWith(github.ref, 'refs/heads/prepare-release')"
runs-on: ubuntu-22.04

steps:
Expand All @@ -167,6 +168,7 @@ jobs:
rasa-sdk-with-dev-deps-docker-image:
name: Build dev Docker image with dev dependencies
if: "!startsWith(github.ref, 'refs/heads/prepare-release')"
runs-on: ubuntu-22.04

steps:
Expand All @@ -193,6 +195,7 @@ jobs:
grpc_standalone_integration_tests:
name: Run gRPC integration tests using standalone server
if: "!startsWith(github.ref, 'refs/heads/prepare-release')"
runs-on: ubuntu-22.04
needs: [rasa-sdk-with-dev-deps-docker-image]

Expand All @@ -219,6 +222,7 @@ jobs:

grpc_docker_integration_tests:
name: Run gRPC integration tests using Docker containers
if: "!startsWith(github.ref, 'refs/heads/prepare-release')"
runs-on: ubuntu-22.04
needs: [rasa-sdk-dev-docker-image, rasa-sdk-with-dev-deps-docker-image]

Expand Down

0 comments on commit dc652d2

Please sign in to comment.