Skip to content

Commit 19d2164

Browse files
Merge branch 'main' into renovate/netlify-packages
2 parents ba9501a + 736ba41 commit 19d2164

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/e2e-report.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 'Deploy e2e test page'
22
on:
33
schedule:
4-
- cron: '0 3 * * 3' # Run every Wednesday at 3am UTC
4+
- cron: '0 6 * * 3' # Run every Wednesday at 6am UTC
55
workflow_dispatch:
66
inputs:
77
use-branch:
@@ -22,9 +22,9 @@ jobs:
2222
id: get-run-id
2323
run: |
2424
if [ "${{ inputs.use-branch }}" == "true" ]; then
25-
E2E_RUN_ID=$(gh run list -w test-e2e.yml -e workflow_dispatch -b $GITHUB_REF_NAME --json databaseId --jq ".[0].databaseId" --repo $GITHUB_REPOSITORY)
25+
E2E_RUN_ID=$(gh run list -w test-e2e.yml -e workflow_dispatch -s success -b $GITHUB_REF_NAME --json databaseId --jq ".[0].databaseId" --repo $GITHUB_REPOSITORY)
2626
else
27-
E2E_RUN_ID=$(gh run list -w test-e2e.yml -e schedule --json databaseId --jq ".[0].databaseId" --repo $GITHUB_REPOSITORY)
27+
E2E_RUN_ID=$(gh run list -w test-e2e.yml -e schedule -s success --json databaseId --jq ".[0].databaseId" --repo $GITHUB_REPOSITORY)
2828
fi
2929
echo "runId=$E2E_RUN_ID" >> $GITHUB_OUTPUT
3030
- name: Download latest e2e results

0 commit comments

Comments
 (0)