Skip to content

Commit

Permalink
[build]
Browse files Browse the repository at this point in the history
  • Loading branch information
bcdurak committed Oct 14, 2024
1 parent dcefa73 commit a699eea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/prepare_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
prepare-release:
if: contains(github.event.head_commit.message, '[prepare]') # TODO: Remove
if: contains(github.event.head_commit.message, '[prepare]') && github.repository == 'zenml-io/zenml' # TODO: Remove
runs-on: ubuntu-latest
steps:
# 0. Check out the repository
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
git push origin HEAD:${{ github.ref }}
build-release:
if: contains(github.event.head_commit.message, '[build]') # TODO: Remove
if: contains(github.event.head_commit.message, '[build]') && github.repository == 'zenml-io/zenml' # TODO: Remove
runs-on: [ubuntu-latest]
steps:
# Check out the prepare-release branch
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
test-release:
if: contains(github.event.head_commit.message, '[test]') # TODO: Remove
if: contains(github.event.head_commit.message, '[test]') && github.repository == 'zenml-io/zenml' # TODO: Remove
runs-on: [ ubuntu-latest ]
steps:
- name: Checkout code
Expand Down

0 comments on commit a699eea

Please sign in to comment.