Skip to content

Github:Webhook

GitHub allows you to register Webhooks for your repositories. Each time an event occurs on your repository, whether it be pushing code, filling issues or creating pull requests, the webhook address you register can be configured to be pinged with details.

Hook event

  • push : 저장소에 푸쉬가 들어왔을 때 발생. 기본 이벤트
  • issues: 이슈가 열리거나 닫혔을 때 발생.
  • issue_comment: 이슈에 코멘트가 달렸을 때 발생.
  • commit_comment: 커밋에 코멘트가 달렸을 때 발생.
  • create: 저장소나 브랜치, 태그가 추가되었을 때 발생.
  • delete: 브랜치나, 태그가 삭제되었을 때 발생.
  • pull_request: 풀리퀘스트가 열리거나 닫혔을 때, 동기화 되었을 때 발생.
  • pullrequestreview_comment: 풀리퀘스트 리뷰 안의 커밋에 커멘트가 달렸을 때.
  • gollum: 위키가 업데이트되었을 때 발생.
  • watch: 사용자가 저장소를 와치했을 때 발생.
  • release: 릴리즈가 추가되었을 때 발생.
  • fork: 저장소가 포크되었을 때 발생.
  • member: Organization의 저장소가 아닐 때 멤버가 추가되면 발생.
  • public: 저장소가 비공개에서 공개로 전환되었을 때 발생.
  • team_add: 저장소에 팀이 추가되었거나 변경되었을 때 발생.
  • status: API를 통해 커밋의 상태가 변경되었을 때 발생.
  • deployment: API를 통해 저장소의 새로운 배포가 생성되었을 때 발생.
  • deployment_status: API를 통해서 저장소의 특정 배포의 상태가 변경되었을 때 발생.

See also

Favorite esite