Skip to content

Instantly share code, notes, and snippets.

@jadb
jadb / github-webhook-handler.php
Last active November 7, 2019 07:34 — forked from milo/github-webhook-handler.php
Github webhook handler
<?php
/**
* GitHub webhook handler template.
*
* @see https://developer.github.com/webhooks/
* @author Miloslav Hůla (https://github.com/milo)
* @author Jad Bitar (https://github.com/jadb)
*/
@jadb
jadb / .varci.yml
Last active August 11, 2016 00:07
Enforce Awesome Lists Contribution Guidelines
ruleset:
one_suggestion:
name: "a single suggestion / PR"
events: [ pull_request ]
message: >
@{{ user.login }}, please only add one suggestion per PR.
when:
- action = "opened" or action = "reopened"
- additions > 1
- files has "README.md"