Skip to content

Commit

Permalink
fix(actions): Disable all affected release workflows on e2e failure
Browse files Browse the repository at this point in the history
  • Loading branch information
SokratisVidros committed May 9, 2024
1 parent b7bccc0 commit d8df2b1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/scheduled_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,13 @@ jobs:
widget_status=$(echo "$needs_json" | jq -r '.test_widget.result')
api_status=$(echo "$needs_json" | jq -r '.test_unit_api.result')
workflows_map=$(cat << EOF
prod-deploy-embed.yml: $widget_status
prod-deploy-widget.yml: $widget_status
prod-deploy-web.yml: $web_status
prod-deploy-api.yml: $api_status
prod-deploy-webhook.yml: $api_status
prod-deploy-worker.yml: $api_status
prod-deploy-ws.yml: $api_status
EOF
)
while IFS= read -r line; do
Expand Down

0 comments on commit d8df2b1

Please sign in to comment.