在gitlab上使用了web hooks 監聽push發生,接收端是用NodeJS寫的一個路由,如下
app.post('/git/hooks' , (req,res) => {
const kind = req.body.object_kind,
name = req.body.user_name,
msg = req.body.commits[0].message;
console.log(kind);
});
測試提交是會接收到,但是不斷重複地收到之前測試的push通知
求問大神,該怎麼通知一次就可以了呢
同問同問,我也遇到這個問題了