Update peter-evans/create-pull-request digest to 49cf7e9 #4922
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@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@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 |