Skip to content

moonagic/webhook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Webhooks, 一个简单的webhook后台

利用Github的Webhook功能进行持续集成

Deprecated

我在自己的服务器上使用GoWebhook替代这个项目.
用Golang重写Github webhook后台服务

配置

// 在Webhooks中设定的secret
var secret = ''
// 在Webhooks中设定的Payload URL
var url = ''
...
// 监听地址端口
}).listen(6606, '127.0.0.1');

自己新建一个用于部署的shell脚本,比如auto_build.sh.   在任务中执行.

开启服务

node index.js

简单的systemd启动服务

[Unit]
Description=GithubWebhookService

[Service]
WorkingDirectory=path/to/webhooks
ExecStart=/usr/bin/node path/to/index.js

[Install]
WantedBy=multi-user.target

About

Webhooks, 一个简单的webhook后台

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published