-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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." | ||
} | ||
} |