Skip to content

Commit

Permalink
Bumping action version
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol committed Aug 26, 2024
1 parent 96fc6ce commit 3963bb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/delete-comments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- name: Check for specific strings in comment
id: check_comment
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const comment = context.payload.comment.body;
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Delete comment if it contains any of the specific strings
if: steps.check_comment.outputs.result == 'true'
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const commentId = context.payload.comment.id;
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Block user if comment contains any of the specific strings
if: steps.check_comment.outputs.result == 'true'
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const userId = context.payload.comment.user.id;
Expand Down

0 comments on commit 3963bb8

Please sign in to comment.