Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .github/workflows/update-wpt.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Update WPT

on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'

permissions:
contents: write
pull-requests: write

jobs:
update-wpt:
name: Update WPT
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Update WPT
run: |
rm -rf test/fixtures/wpt && mkdir test/fixtures/wpt &&

git clone https://github.com/web-platform-tests/wpt.git --depth=1 test/fixtures/tmp-wpt &&

mv test/fixtures/tmp-wpt/LICENSE.md test/fixtures/wpt/LICENSE.md &&

mv test/fixtures/tmp-wpt/common test/fixtures/wpt/common &&
mv test/fixtures/tmp-wpt/eventsource test/fixtures/wpt/eventsource &&
mv test/fixtures/tmp-wpt/fetch test/fixtures/wpt/fetch &&
mv test/fixtures/tmp-wpt/interfaces test/fixtures/wpt/interfaces &&
mv test/fixtures/tmp-wpt/mimesniff test/fixtures/wpt/mimesniff &&
mv test/fixtures/tmp-wpt/resources test/fixtures/wpt/resources &&
mv test/fixtures/tmp-wpt/service-workers test/fixtures/wpt/service-workers &&
mv test/fixtures/tmp-wpt/storage test/fixtures/wpt/storage &&
mv test/fixtures/tmp-wpt/websockets test/fixtures/wpt/websockets &&
mv test/fixtures/tmp-wpt/xhr test/fixtures/wpt/xhr &&

rm -rf test/fixtures/tmp-wpt
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
base: main
branch: wpt-update
title: Update WPT
body: Automated update of the WPT
commit-message: "chore: update WPT"