Skip to content

Commit

Permalink
tools: add WPT updater
Browse files Browse the repository at this point in the history
  • Loading branch information
Mert Can Altin committed Aug 20, 2024
1 parent ef4bdbf commit a0e9810
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/update-wpt.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Update WPT

on:
workflow_dispatch:
schedule:
# Run once a week at 12:00 AM UTC on Sunday.
- cron: 0 0 * * *

jobs:
update-wpt:
name: Update WPT
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
persist-credentials: false
- name: Update WPT
run: |
rm -rf test/fixtures/wpt
mkdir test/fixtures/wpt
- name: Clone WPT Repository
uses: actions/checkout@v2
with:
repository: web-platform-tests/wpt
ref: ${{ github.sha }}
path: test/fixtures/wpt
sparse_checkout: common/ eventsource/ fetch/ interfaces/ mimesniff/ resources/ service-workers/ storage/ websockets/ xhr/ LICENSE.md
- name: Move WPT Files
run: |
rm -rf test/fixtures/wpt/.git
- name: Create Pull Request
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: actions/wpt-update
title: Update WPT
body: Automated update of the WPT
commit-message: 'test: update wpt test'

0 comments on commit a0e9810

Please sign in to comment.