chore(deps-dev): Bump the all group with 8 updates #1650
Workflow file for this run
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: 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 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). |