Skip to content

Commit

Permalink
fixes for naming when used as reusable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
olupton committed Dec 7, 2023
1 parent 7e82c87 commit 566e4e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_triage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ jobs:
name_conclusion_array=()
while IFS= read -r line; do
name_conclusion_array+=("$line")
done < <(echo "$json_data" | jq -r '.jobs[] | select(.name | startswith("test-t5x-ff") and contains("outcome")) | "\(.name)\t\(.conclusion)"')
done < <(echo "$json_data" | jq -r '.jobs[] | select(.name | contains("test-t5x-ff") and endswith(" / outcome")) | "\(.name)\t\(.conclusion)"')
TABLE_MD=$(
cat <<EOF
Expand Down Expand Up @@ -393,7 +393,7 @@ jobs:
name_conclusion_array=()
while IFS= read -r line; do
name_conclusion_array+=("$line")
done < <(echo "$json_data" | jq -r '.jobs[] | select(.name | startswith("test-pax-ff") and contains("outcome")) | "\(.name)\t\(.conclusion)"')
done < <(echo "$json_data" | jq -r '.jobs[] | select(.name | contains("test-pax-ff") and endswith(" / outcome")) | "\(.name)\t\(.conclusion)"')
TABLE_MD=$(
cat <<EOF
Expand Down

0 comments on commit 566e4e4

Please sign in to comment.