Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
be206a51
Commit
be206a51
authored
Dec 14, 2014
by
Jeroen van Baarsen
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8410 from tricknotes/add-webhook-doc-for-tag-event
Add missing webhook doc for tag event
parents
ba4fe476
d11e048d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
doc/web_hooks/web_hooks.md
doc/web_hooks/web_hooks.md
+23
-0
No files found.
doc/web_hooks/web_hooks.md
View file @
be206a51
...
...
@@ -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