From d11e048d7fea208a89dab80712925eaf34f69627 Mon Sep 17 00:00:00 2001 From: Ryunosuke SATO Date: Sun, 14 Dec 2014 23:47:13 +0900 Subject: Add missing webhook doc for tag event --- doc/web_hooks/web_hooks.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'doc/web_hooks') diff --git a/doc/web_hooks/web_hooks.md b/doc/web_hooks/web_hooks.md index f19517c0f18..e17d21b990d 100644 --- a/doc/web_hooks/web_hooks.md +++ b/doc/web_hooks/web_hooks.md @@ -54,6 +54,29 @@ Triggered when you push to the repository except when pushing tags. } ``` +## Tag events + +Triggered when you create (or delete) tags to the repository. + +**Request body:** + +```json +{ + "ref": "refs/tags/v1.0.0", + "before": "0000000000000000000000000000000000000000", + "after": "82b3d5ae55f7080f1e6022629cdb57bfae7cccc7", + "user_id": 1, + "user_name": "John Smith", + "project_id": 1, + "repository": { + "name": "jsmith", + "url": "ssh://git@example.com/jsmith/example.git", + "description": "", + "homepage": "http://example.com/jsmith/example" + } +} +``` + ## Issues events Triggered when a new issue is created or an existing issue was updated/closed/reopened. -- cgit v1.2.3