Update InterfaceData.json #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update InterfaceData.json | |
on: | |
schedule: | |
# picking Fridays as webref IDL releases tend to be pushed on Thursdays | |
- cron: "0 0 * * 6" | |
workflow_dispatch: | |
jobs: | |
update: | |
if: github.repository == 'mdn/content' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout content | |
uses: actions/checkout@v4 | |
with: | |
path: mdn-content | |
ref: main | |
- name: Setup node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: "mdn-content/.nvmrc" | |
- name: Checkout webref | |
uses: actions/checkout@v4 | |
with: | |
repository: w3c/webref | |
path: webref | |
ref: "@webref/idl@latest" | |
- name: Extract data from webref | |
working-directory: mdn-content | |
run: node scripts/update-interface-data.js ../webref/ | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
path: mdn-content | |
token: ${{ secrets.AUTOMERGE_TOKEN }} | |
title: Update InterfaceData based on WebRef | |
author: mdn-bot <108879845+mdn-bot@users.noreply.github.com> | |
commit-message: Update InterfaceData based on WebRef | |
body: Automated changes generated by scripts/update-interface-data via interface-updater github workflow | |
delete-branch: true | |
branch: interfacedata-update |