aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMartin Robinson <mrobinson@igalia.com>2023-04-12 14:50:19 +0200
committerMartin Robinson <mrobinson@igalia.com>2023-04-12 15:14:03 +0200
commit728021d69eab55d4eb04dee4f4b4b37de14601e6 (patch)
tree2214cb2fd704375c75b0fa038d0978a4a3a44758 /.github
parent15de7b99b7c3d6a54f78f2732ca963a28607a439 (diff)
downloadservo-728021d69eab55d4eb04dee4f4b4b37de14601e6.tar.gz
servo-728021d69eab55d4eb04dee4f4b4b37de14601e6.zip
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.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/scheduled-wpt-import.yml (renamed from .github/workflows/wpt-nightly.yml)8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/wpt-nightly.yml b/.github/workflows/scheduled-wpt-import.yml
index 1240e13b439..49bdda984e7 100644
--- a/.github/workflows/wpt-nightly.yml
+++ b/.github/workflows/scheduled-wpt-import.yml
@@ -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: