Skip to content

Commit

Permalink
do not deploy backend template
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Jul 2, 2024
1 parent 73a034d commit 4323623
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,12 @@ jobs:
# - the previous jobs did not fail (see [needs]).
# - the workflow was not cancelled.
# - the repo's owner is Ocado Tech.
# - the repo is not the backend template.
# - a change is made to an environment's branch.
if: |
always() && !failure() && !cancelled() &&
github.repository_owner_id == 2088731 && (
github.repository_owner_id == 2088731 &&
github.repository_id != 610204172 && (
github.ref_name == 'production' ||
github.ref_name == 'development' ||
github.ref_name == 'staging'
Expand Down

0 comments on commit 4323623

Please sign in to comment.