From 05a9f1a356b01b33d3d3efcf6204143f57db6b1e Mon Sep 17 00:00:00 2001 From: miampf Date: Wed, 27 Mar 2024 13:09:56 +0100 Subject: [PATCH] added forgotten shebang --- .github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh b/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh index 95ab04a29..0da75f25b 100755 --- a/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh +++ b/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh @@ -1,3 +1,5 @@ +#!/bin/bash + # get_e2e_test_ids_on_date gets all workflow IDs of workflows that contain "e2e" on a specific date. function get_e2e_test_ids_on_date { ids="$(gh run list --created "$1" --status failure --json createdAt,workflowName,databaseId --jq '.[] | select(.workflowName | contains("e2e") and (contains("MiniConstellation") | not)) | .databaseId' -L1000 -R edgelesssys/constellation || exit 1)"