chore(deps): Bump wpt from 24234ae
to a5312ef
#2897
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: Chromium roll reminder | |
# Declare default permissions as read only. | |
permissions: read-all | |
on: | |
pull_request: | |
types: [labeled] | |
jobs: | |
post-message: | |
name: Post Chromium roll reminder | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
if: contains(github.event.label.name, 'autorelease') && contains(github.event.label.name, 'tagged') | |
steps: | |
- name: Find Comment Id | |
uses: peter-evans/find-comment@3eae4d37986fb5a8592848f6a574fdf654e61f9e # v3.1.0 | |
id: find-comment-id | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
comment-author: 'github-actions[bot]' | |
- name: Upsert comment | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | |
with: | |
comment-id: ${{ steps.find-comment-id.outputs.comment-id }} | |
issue-number: ${{ github.event.pull_request.number }} | |
edit-mode: replace | |
body: | | |
Please make the following steps: | |
1. Create a Chromium CL to roll latest version of Mapper. Follow the instructions in [Roll into Chromium](https://github.com/GoogleChromeLabs/chromium-bidi#roll-into-chromium). | |
1. Update the implementation status in [WebDriver BiDi Implementation Status doc](https://docs.google.com/spreadsheets/d/1bkiPU5eDBCqFkx5p_VSBx_OK8gy9TeHRKQVPHKMATGQ/edit?usp=sharing). |