Import WPT tests every week instead of every day

We often have multiple imports stacked up which makes it more confusing
to land each one. In addition, giving a week to do the import will give
us more margin to triage failing tests and hopefully to be able to use
intermittent expectations for flaky tests.
This commit is contained in:
Martin Robinson 2023-04-12 14:50:19 +02:00
parent 15de7b99b7
commit 728021d69e
2 changed files with 4 additions and 4 deletions

View file

@ -1,9 +1,9 @@
name: WPT import
name: Scheduled WPT import
on:
schedule:
# Run this job at 00:00 everyday
- cron: "0 0 * * *"
# Run this job every Sunday at 00:00.
- cron: "0 0 * * 0"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
@ -66,7 +66,7 @@ jobs:
export CURRENT_DATE=$(date +"%d-%m-%Y")
echo $CURRENT_DATE
echo "CURRENT_DATE=$CURRENT_DATE" >> $GITHUB_ENV
./etc/ci/wpt-nightly-update.sh
./etc/ci/wpt-scheduled-update.sh
- name: Push changes
uses: ad-m/github-push-action@master
with: