Skip to content

Commit

Permalink
update: issue bot close duplicate issue
Browse files Browse the repository at this point in the history
  • Loading branch information
windingwind committed Sep 25, 2023
1 parent a1f37d8 commit 311f6cd
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/issuebot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,18 @@ jobs:
steps:
- uses: actions-cool/issues-helper@v3
with:
åactions: close-issue, create-comment
actions: close-issue, create-comment
token: ${{ secrets.GITHUB_TOKEN }}
body: |
Hello @${{ github.event.issue.user.login }}. This issue is marked as `invalid` and closed. Please make sure you are reporting an issue and following the issue template.
issue-duplicate:
name: close duplicate issue
if: github.event.label.name == 'duplicate'
runs-on: ubuntu-latest
steps:
- uses: actions-cool/issues-helper@v3
with:
actions: close-issue, create-comment
token: ${{ secrets.GITHUB_TOKEN }}
body: |
Hello @${{ github.event.issue.user.login }}. This issue is marked as `duplicate` and closed. Please make sure you have searched to see if an issue already exists for the bug you encountered.

0 comments on commit 311f6cd

Please sign in to comment.