Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
01553b6579d4
Commit
be206a51
authored
Dec 14, 2014
by
Jeroen van Baarsen
Browse files
Merge pull request #8410 from tricknotes/add-webhook-doc-for-tag-event
Add missing webhook doc for tag event
parents
19a5891358d6
ee81bb8418b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
doc/web_hooks/web_hooks.md
View file @
01553b65
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment