https://github.com/tdsmith/github-snooze-button
Lets you add labels to Github issues that auto-clear on new activity.
https://github.com/tdsmith/github-snooze-button
Last synced: 5 months ago
JSON representation
Lets you add labels to Github issues that auto-clear on new activity.
- Host: GitHub
- URL: https://github.com/tdsmith/github-snooze-button
- Owner: tdsmith
- License: mit
- Created: 2016-04-03T05:23:44.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-10-12T19:04:23.000Z (over 6 years ago)
- Last Synced: 2024-11-21T14:19:10.355Z (5 months ago)
- Language: Python
- Homepage:
- Size: 54.7 KB
- Stars: 234
- Watchers: 21
- Forks: 23
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: code_of_conduct.md
Awesome Lists containing this project
- jimsghstars - tdsmith/github-snooze-button - Lets you add labels to Github issues that auto-clear on new activity. (Python)
README
# github-snooze-button [](https://travis-ci.org/tdsmith/github-snooze-button) [](https://coveralls.io/github/tdsmith/github-snooze-button?branch=master) [](https://raw.githubusercontent.com/tdsmith/github-snooze-button/master/LICENSE) [](https://pypi.python.org/pypi/github-snooze-button)
Projects with a lot of issue volume accumulate a lot of open issues which are not immediately actionable, usually because they're waiting for a response from a contributor. There's no easy way to hide those from the Github interface or signal to other maintainers that an open issue or PR isn't actionable yet.
Enter github-snooze-button!
Add a "snooze" label to an issue, and github-snooze-button will remove the label whenever
* an issue or pull request receives a comment,
* a pull request receives a comment on a diff, or
* a pull request branch is updated.github-snooze-button can operate in two modes: deployed to AWS Lambda, or polling a Amazon SQS queue locally.
## Configuration file
github-snooze-button uses .ini-style configuration files that look like:
```
[default]
github_username = your_username
github_token = your_token
aws_key = your_key
aws_secret = your_secret
snooze_label = snooze
# aws_region = us-west-2 # optional[your_username/repo1]
ignore_member_of = cool_organization # ignore comments from members of an organization[your_username/repo2]
snooze_label = response required
```The AWS credentials in the config file are sent to Github and used to push notifications into SNS. The listener also uses them to consume events from SQS. They are not used to configure the Lambda deployment.
## Option 1: AWS Lambda deployment
1. Generate a Github authentication token with `public_repo`, `admin:repo_hook`, and (if you're using `ignore_member_of`, `org:read`) scopes. (Note that `public_repo` gives write permission! These credentials will be embedded in the Lambda deployment package, so you should consider the contents of the deployment package sensitive.)
1. Save AWS credentials with [these permissions or better](https://gist.github.com/c27412689c76d01968c86536df796a11) to a place boto can find them: either [in the environment](https://boto3.readthedocs.org/en/latest/guide/configuration.html#environment-variables) or in a [configuration file](https://boto3.readthedocs.org/en/latest/guide/configuration.html#shared-credentials-file).
1. Install github-snooze-button: `pip install git+https://github.com/tdsmith/github-snooze-button.git`
1. Launch with `snooze_deploy /path/to/config.ini`. `snooze_deploy` will:
* Build deployment packages for each repository
* Define or re-use a `/tdsmith/github-snooze-button/snooze_lambda_role` IAM role with the `AWSLambdaBasicExecutionRole` policy
* Create or re-use SNS topics for each repository
* Configure each Github repository to push notifications to SNS
* Create or update a Lambda function for each repository
* Give each SNS topic permission to invoke its matching Lambda function and create a subscription connecting themAnd now you're live.
## Option 2: Polling mode
1. Generate a Github authentication token with `public_repo` and `admin:repo_hook` scopes.
1. In AWS IAM, create a Amazon AWS user with all the AmazonSQS* and AmazonSNS* policies (and possibly fewer?)
1. Install github-snooze-button: `pip install git+https://github.com/tdsmith/github-snooze-button.git`
1. Launch with `snooze_listen /path/to/config.ini`Note that the queue will continue collecting events unless you disconnect the repository from SNS.
## Teardown
The fastest way to disable github-snooze-button is by deleting the Amazon SNS service from your repository's "Webhooks & services" configuration page. It will be automatically recreated the next time you run snooze in either mode.
## Questions
* _Will this cost me lots of money?_
Probably not. Lambda, [SNS](https://aws.amazon.com/sns/pricing/) and [SQS](https://aws.amazon.com/sqs/pricing/) are both free for the first million transactions a month. Homebrew uses a few hundred transactions a day. YMMV!## Contact
Tim D. Smith: snooze at tds.xyz, Freenode: tdsmith, @biotimylated