Bump electron-to-chromium from 1.5.36 to 1.5.41 #4524
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: Dependabot Merge | |
on: | |
pull_request_target: | |
types: | |
- opened | |
jobs: | |
dependabot-merge: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }} | |
steps: | |
- uses: peter-evans/find-comment@3eae4d37986fb5a8592848f6a574fdf654e61f9e # v3 | |
id: find-comment | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
issue-number: ${{ github.event.pull_request.number }} | |
body-includes: '@dependabot merge' | |
- uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
comment-id: ${{ steps.find-comment.outputs.comment-id }} | |
issue-number: ${{ github.event.pull_request.number }} | |
body: '@dependabot merge' | |
edit-mode: replace |