Skip to content
This repository was archived by the owner on Apr 18, 2024. It is now read-only.

Commit fdd748b

Browse files
ci: bump peter-evans/create-or-update-comment from 3 to 4 (#296)
Bumps [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment) from 3 to 4. - [Release notes](https://github.com/peter-evans/create-or-update-comment/releases) - [Commits](peter-evans/create-or-update-comment@v3...v4) --- updated-dependencies: - dependency-name: peter-evans/create-or-update-comment dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 003ed1d commit fdd748b

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/git-command.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: hmarr/[email protected]
1717

1818
- name: Add Workflow link to command comment
19-
uses: peter-evans/create-or-update-comment@v3
19+
uses: peter-evans/create-or-update-comment@v4
2020
with:
2121
token: ${{ secrets.GIT_PAT }}
2222
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
@@ -50,7 +50,7 @@ jobs:
5050
echo "merge_conflict=$(git merge-tree $(git merge-base HEAD origin/$SLASH_COMMAND_ARG_BRANCH) origin/$SLASH_COMMAND_ARG_BRANCH HEAD | grep '<<')" >> $GITHUB_OUTPUT
5151
5252
- name: Add reaction to command comment on merge conflict
53-
uses: peter-evans/create-or-update-comment@v3
53+
uses: peter-evans/create-or-update-comment@v4
5454
if: ${{ steps.check-conflict.outputs.merge_conflict }}
5555
with:
5656
token: ${{ secrets.GIT_PAT }}
@@ -81,7 +81,7 @@ jobs:
8181
8282
- name: Add reaction to command comment on nothing to do
8383
if: ${{ !steps.check-conflict.outputs.merge_conflict && steps.commit_and_push.outputs.changes == 'no' }}
84-
uses: peter-evans/create-or-update-comment@v3
84+
uses: peter-evans/create-or-update-comment@v4
8585
with:
8686
token: ${{ secrets.GIT_PAT }}
8787
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
@@ -92,7 +92,7 @@ jobs:
9292

9393
- name: Add reaction to command comment on success
9494
if: ${{ !steps.check-conflict.outputs.merge_conflict && steps.commit_and_push.outputs.changes == 'yes' }}
95-
uses: peter-evans/create-or-update-comment@v3
95+
uses: peter-evans/create-or-update-comment@v4
9696
with:
9797
token: ${{ secrets.GIT_PAT }}
9898
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
@@ -103,7 +103,7 @@ jobs:
103103
reactions: "+1"
104104

105105
- name: Add reaction to command comment on failure
106-
uses: peter-evans/create-or-update-comment@v3
106+
uses: peter-evans/create-or-update-comment@v4
107107
if: failure()
108108
with:
109109
token: ${{ secrets.GIT_PAT }}
@@ -119,7 +119,7 @@ jobs:
119119
timeout-minutes: 1
120120
steps:
121121
- name: Update comment
122-
uses: peter-evans/create-or-update-comment@v3
122+
uses: peter-evans/create-or-update-comment@v4
123123
with:
124124
token: ${{ secrets.GIT_PAT }}
125125
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}

.github/workflows/help-command.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- name: Update comment if empty
1212
if: ${{ github.event.client_payload.slash_command.args.all == '' }}
13-
uses: peter-evans/create-or-update-comment@v3
13+
uses: peter-evans/create-or-update-comment@v4
1414
with:
1515
token: ${{ secrets.GIT_PAT }}
1616
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}

.github/workflows/jira-command.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: hmarr/[email protected]
1717

1818
- name: Add Workflow link to command comment
19-
uses: peter-evans/create-or-update-comment@v3
19+
uses: peter-evans/create-or-update-comment@v4
2020
with:
2121
token: ${{ secrets.GIT_PAT }}
2222
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
@@ -64,7 +64,7 @@ jobs:
6464
type: ${{ github.event.client_payload.slash_command.args.unnamed.arg2 || 'task' }}
6565

6666
- name: Add reaction to command comment on success
67-
uses: peter-evans/create-or-update-comment@v3
67+
uses: peter-evans/create-or-update-comment@v4
6868
with:
6969
token: ${{ secrets.GIT_PAT }}
7070
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
@@ -74,7 +74,7 @@ jobs:
7474
reactions: "+1"
7575

7676
- name: Add reaction to command comment on failure
77-
uses: peter-evans/create-or-update-comment@v3
77+
uses: peter-evans/create-or-update-comment@v4
7878
if: failure()
7979
with:
8080
token: ${{ secrets.GIT_PAT }}
@@ -91,7 +91,7 @@ jobs:
9191
timeout-minutes: 1
9292
steps:
9393
- name: Update comment
94-
uses: peter-evans/create-or-update-comment@v3
94+
uses: peter-evans/create-or-update-comment@v4
9595
with:
9696
token: ${{ secrets.GIT_PAT }}
9797
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}

.github/workflows/slash-command-dispatch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272

7373
- name: Edit comment with error message
7474
if: ${{ steps.determine_command.outputs.command_state == 'unknown' }}
75-
uses: peter-evans/create-or-update-comment@v3
75+
uses: peter-evans/create-or-update-comment@v4
7676
with:
7777
comment-id: ${{ github.event.comment.id }}
7878
body: |

0 commit comments

Comments
 (0)