We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a2026c commit 5f2ee4dCopy full SHA for 5f2ee4d
.github/workflows/regression-summary.yml
@@ -86,7 +86,8 @@ jobs:
86
exit 1
87
fi
88
89
- RUNS=$(echo "$RAW_RUNS" | jq -c '.workflow_runs[] | select(.created_at >= "'${SINCE}'T00:00:00Z" and .created_at <= "'${UNTIL}'T23:59:59Z")')
+ RUNS=$(echo "$RAW_RUNS" | jq -c --arg SINCE "${SINCE}T00:00:00Z" --arg UNTIL "${UNTIL}T23:59:59Z" \
90
+ '.workflow_runs[] | select(.created_at >= $SINCE and .created_at <= $UNTIL)')
91
92
if [ -z "$RUNS" ]; then
93
echo "No failed runs found for workflow: Browser Tests on branch $BRANCH in this window" >&2
0 commit comments