Skip to content

Commit

Permalink
Fix fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitrrine committed Nov 18, 2024
1 parent cc495e6 commit 951a5fb
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/issue-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,19 @@ jobs:
steps:
- uses: tiangolo/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
config: >-
token: ${{ secrets.GITHUB_TOKEN }}
config: |
{
"accepted": {"delay": 0, "message": "🎉 Your request was accepted, thank you for contributing!"},
"duplicate": {"delay": 0, "message": "⚠️ Your request has been removed for being a duplicate, next time please check if the domain/bug that you want to report was not already reported before creating a new one."},
"rejected": {"delay": 0, "message": "🚫 Your request was denied, please don't open an issue with the same domain/bug again! If you think there was an error, comment below and the issue will be reviewed again."}
"accepted": {
"delay": 0,
"message": "🎉 Your request was accepted, thank you for contributing!"
},
"duplicate": {
"delay": 0,
"message": "⚠️ Your request has been removed for being a duplicate, next time please check if the domain/bug that you want to report was not already reported before creating a new one."
},
"rejected": {
"delay": 0,
"message": "🚫 Your request was denied, please don't open an issue with the same domain/bug again! If you think there was an error, comment below and the issue will be reviewed again."
}
}

0 comments on commit 951a5fb

Please sign in to comment.