Bump peter-evans/find-comment from 2 to 3 #19
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: Pull request Deploy preview | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
paths: | |
- '.github/**' | |
- 'CODE_OF_CONDUCT.md' | |
- 'CONTRIBUTING.md' | |
- 'LICENSE' | |
- 'README.md' | |
jobs: | |
deploy-preview: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: peter-evans/find-comment@v3 | |
id: find-comment | |
name: Find Comment | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
comment-author: gh-pages-deploy | |
- uses: peter-evans/create-or-update-comment@v3 | |
name: Create Comment | |
with: | |
body: |- | |
## Deploy Preview | |
Skipping Deploy Preview. | |
comment-id: ${{ steps.find-comment.outputs.comment-id }} | |
issue-number: ${{ github.event.pull_request.number }} | |
token: ${{ secrets.BOT }} | |
edit-mode: replace |