48 lines
1.6 KiB
YAML
48 lines
1.6 KiB
YAML
name: regenerate
|
|
|
|
# Declare default permissions as read only.
|
|
permissions: read-all
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
concurrency:
|
|
group: regenerate-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
ci:
|
|
name: '[Required] Regenerate'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
|
|
with:
|
|
cache: npm
|
|
node-version-file: '.nvmrc'
|
|
- name: Install cddlconv
|
|
run: cargo install cddlconv@0.1.7
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Build and test
|
|
run: npm test
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
|
|
with:
|
|
token: ${{ secrets.BROWSER_AUTOMATION_BOT_TOKEN }}
|
|
branch: regenerate
|
|
delete-branch: true
|
|
committer: Browser Automation Bot <browser-automation-bot@google.com>
|
|
author: Browser Automation Bot <browser-automation-bot@google.com>
|
|
commit-message: 'fix: re-generate types based on specifciation updates'
|
|
title: 'fix: re-generate types based on specifciation updates'
|
|
body: 'Automatically generated by https://github.com/GoogleChromeLabs/webdriver-bidi-protocol/blob/main/.github/workflows/regenerate.yml'
|
|
push-to-fork: browser-automation-bot/webdriver-bidi-protocol
|