Skip to content

Instantly share code, notes, and snippets.

@mashihua
Last active August 29, 2015 13:56
Show Gist options
  • Save mashihua/8998072 to your computer and use it in GitHub Desktop.
Save mashihua/8998072 to your computer and use it in GitHub Desktop.
{
"port":9001,
"config":{
"repo": "mashihua/Hphoto"
},
"branchs":["master"]
}
gith = require 'gith'
{execFile} = require 'child_process'
github = require "#{__dirname}/github.json"
pullFile = "#{__dirname}/pull.sh"
env = process.env.NODE_ENV || 'development'
if github[env]
github = github[env]
config = github.config
branchs = github.branchs
gith = gith.create github.port or 9001
console.log("%j", {action:'github.webhooks', exec: file, config: config , branchs: branchs, time: (new Date(payload.time).toLocaleString())})
gith(github.config).on 'all', (payload)->
branchs.forEach (branch)->
if branch is payload.branch
execFile pullFile, [config.repo, branch], (err, stdout, stderr)->
return console.error err if err
console.log '%j', {action: 'github.action',branch:payload.branch, pusher : payload.pusher, events: events,sha: payload.sha, time: (new Date(payload.time).toLocaleString())}
#! /bin/bash
PROJECT=`dirname "$0"`
PROJECT=`cd "$PROJECT" > /dev/null; pwd`
cd $PROJECT/config
reop="$1"
shift
if [ "$reop" = "" ]; then
echo "Error: reop is not set."
exit 1
fi
branch="$1"
if [ "$branch" = "" ]; then
echo "Error: branch is not set."
exit 1
fi
/usr/bin/git pull [email protected]:$reop.git $branch:refs/remotes/origin/$branch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment