Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keithamus/probot-flood
A bot that automatically locks issues if they get flooded with comments
https://github.com/keithamus/probot-flood
probot probot-app
Last synced: 16 days ago
JSON representation
A bot that automatically locks issues if they get flooded with comments
- Host: GitHub
- URL: https://github.com/keithamus/probot-flood
- Owner: keithamus
- License: mit
- Created: 2018-03-09T00:09:54.000Z (almost 7 years ago)
- Default Branch: latest
- Last Pushed: 2018-03-13T09:47:38.000Z (almost 7 years ago)
- Last Synced: 2024-10-20T12:41:03.288Z (2 months ago)
- Topics: probot, probot-app
- Language: JavaScript
- Homepage:
- Size: 118 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# probot-flood
Are you a maintainer of a popular GitHub repository?
Do hoardes of thirsty randos clog up your issue tracker?
Not any more with new probot-flood! Wash away your troubles with this new handy-dandy probot that automatically locks issues that cross a threshold of comments/reactions per minute!
Fully configurable by you, yes you! Don't wait, this can be yours today for the low low price of $0!
### Configuration
You don't need any configuration for this to work in your project but you can customize a few things to fit your needs. You can create a .github/probot-flood.yml file:
```yaml
#probot-flood.yml# How many comments per minute are allowed before probot-flood locks the issue (0 to disable)
commentsPerMinute: 10,
# How many reactions per minute are allowed before probot-flood locks the issue (0 to disable)
reactionsPerMinute: 0,
# The message the bot will post before it locks the issue
issueLockMessage: This issue is seeing a lot of traffic, so we're going to lock it for now to just collaborators
```