build(deps): bump specs/webdriver-bidi from 280f2cc to d304c9b in…
#67
This file contains hidden or 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: 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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| fetch-depth: 2 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| cache: npm | |
| node-version-file: '.nvmrc' | |
| - name: Install cddlconv | |
| run: cargo install [email protected] | |
| - 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 <[email protected]> | |
| author: Browser Automation Bot <[email protected]> | |
| commit-message: 'fix: re-generate types based on spec updates' | |
| title: 'fix: re-generate types based on spec 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 |