https://github.com/ihabunek/github-notice
A script which sends email notifications for pull requests.
https://github.com/ihabunek/github-notice
Last synced: 18 days ago
JSON representation
A script which sends email notifications for pull requests.
- Host: GitHub
- URL: https://github.com/ihabunek/github-notice
- Owner: ihabunek
- License: mit
- Created: 2012-12-10T21:36:46.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-05-03T08:24:13.000Z (almost 12 years ago)
- Last Synced: 2025-02-09T21:43:07.726Z (2 months ago)
- Language: Python
- Size: 125 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
github-notice
=============A simple script which sends email notifications for Github pull requests.
Deploy
------Install prerequisites into a virtual env:
```
virtualenv env
source env/bin/activate
pip install -r requirements.txt
```Copy empty settings file, and fill in the info.
```
cp settings.dist.py settings.py
vim settings.py
```Add script to crontab, e.g. run every 10 minutes:
```
*/10 * * * * python /path/to/notify.py
```If you fill in the username and password for github, then the Github API
allows 5000 queries per hour. Otherwise you're limited to 50 queries per hour
so be careful how often you run the script.