Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mazyod/github-file-watcher
I made this Google AppEngine application to monitor changes to certain files on cocos2d-x repo
https://github.com/mazyod/github-file-watcher
Last synced: about 2 months ago
JSON representation
I made this Google AppEngine application to monitor changes to certain files on cocos2d-x repo
- Host: GitHub
- URL: https://github.com/mazyod/github-file-watcher
- Owner: Mazyod
- Created: 2015-07-14T20:07:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-17T13:34:54.000Z (over 9 years ago)
- Last Synced: 2024-10-15T10:22:47.293Z (3 months ago)
- Language: Python
- Size: 129 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Github File Watcher
So, I was contributing stuff to [cocos2d-x](https://github.com/cocos2d/cocos2d-x), but I wanted to know if anyone made changes to my changes, so I can review them.
Instead of reviewing every single PR, we have this server receiving github PR webhooks, and checking if any of the files to be monitored have been changed.
## Usage
To use this app, simply clone, add a `config.py` file with two variables:
```python
# Webhook to deliver notifications to
SLACK_WEBHOOK = 'your-slack-webhook'# Files to check for changes
FILES = ['filename-with-or-without-extension']
```