Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump peter-evans/create-or-update-comment from 1.4.4 to 2.1.0 #116

Open
wants to merge 1 commit into
base: 3.X.X-Branch
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Create PR Build Comment
if: github.event_name == 'pull_request' || github.event_name == 'pull_request_target'
uses: peter-evans/create-or-update-comment@v1.4.4
uses: peter-evans/create-or-update-comment@v2.1.0
with:
issue-number: ${{ github.event.pull_request.number }}
body: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/get-build-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,13 @@ jobs:
echo "::set-output name=runid::$GH_RUNID"
echo "::set-output name=links::$MDR"
- name: React to Slash Command Comment
uses: peter-evans/create-or-update-comment@v1.4.4
uses: peter-evans/create-or-update-comment@v2.1.0
with:
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
reactions: hooray
- name: Reply Error in PR
if: steps.arts.outputs.result == 'FAILED'
uses: peter-evans/create-or-update-comment@v1.4.4
uses: peter-evans/create-or-update-comment@v2.1.0
with:
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
issue-number: ${{ github.event.client_payload.github.payload.issue.number }}
Expand All @@ -131,7 +131,7 @@ jobs:
- name: Create comment in PR
id: successPR
if: steps.arts.outputs.result == 'SUCCESS'
uses: peter-evans/create-or-update-comment@v1.4.4
uses: peter-evans/create-or-update-comment@v2.1.0
with:
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
issue-number: ${{ github.event.client_payload.github.payload.issue.number }}
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
echo "Slash Comment should have been deleted now."
- name: Replace Success PR Comment
if: steps.arts.outputs.result == 'SUCCESS'
uses: peter-evans/create-or-update-comment@v1.4.4
uses: peter-evans/create-or-update-comment@v2.1.0
with:
comment-id: ${{ steps.successPR.outputs.comment-id }}
edit-mode: replace
Expand Down