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
ee81bb8418b8
Commit
d11e048d
authored
Dec 14, 2014
by
Ryunosuke SATO
Browse files
Add missing webhook doc for tag event
parent
7bbae5fdd082
Changes
1
Hide whitespace changes
Inline
Side-by-side
doc/web_hooks/web_hooks.md
View file @
ee81bb84
...
...
@@ -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