File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
name : ' Deploy e2e test page'
2
2
on :
3
3
schedule :
4
- - cron : ' 0 3 * * 3' # Run every Wednesday at 3am UTC
4
+ - cron : ' 0 6 * * 3' # Run every Wednesday at 6am UTC
5
5
workflow_dispatch :
6
6
inputs :
7
7
use-branch :
22
22
id : get-run-id
23
23
run : |
24
24
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)
26
26
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)
28
28
fi
29
29
echo "runId=$E2E_RUN_ID" >> $GITHUB_OUTPUT
30
30
- name : Download latest e2e results
You can’t perform that action at this time.
0 commit comments