Last active
August 29, 2015 13:56
-
-
Save mashihua/8998072 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"port":9001, | |
"config":{ | |
"repo": "mashihua/Hphoto" | |
}, | |
"branchs":["master"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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())} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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