diff options
author | Robert Speicher <robert@gitlab.com> | 2018-04-09 16:08:10 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2018-04-09 16:08:10 +0000 |
commit | 91a3a4b526214f4174f4f12de23dfb5baf033211 (patch) | |
tree | dc3a600fe208621d7cb9cf71a1f1f2246f93bea1 /doc | |
parent | db204e23fc5a1bf161e7475fe06199fb435e1cab (diff) | |
parent | 3a4086e22f2a4c837635f14bb6e9ae056299dc6c (diff) | |
download | gitlab-ce-91a3a4b526214f4174f4f12de23dfb5baf033211.tar.gz |
Merge branch 'feature/add_target_to_tags' into 'master'
Expose the target commit ID through the tag API
See merge request gitlab-org/gitlab-ce!18248
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/tags.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/api/tags.md b/doc/api/tags.md index fa25dc76452..4af096c3c0c 100644 --- a/doc/api/tags.md +++ b/doc/api/tags.md @@ -42,6 +42,7 @@ Parameters: "description": "Amazing release. Wow" }, "name": "v1.0.0", + "target": "2695effb5807a22ff3d138d593fd856244e155e7", "message": null } ] @@ -73,6 +74,7 @@ Example Response: { "name": "v5.0.0", "message": null, + "target": "60a8ff033665e1207714d6670fcd7b65304ec02f", "commit": { "id": "60a8ff033665e1207714d6670fcd7b65304ec02f", "short_id": "60a8ff03", @@ -132,12 +134,16 @@ Parameters: "description": "Amazing release. Wow" }, "name": "v1.0.0", + "target: "2695effb5807a22ff3d138d593fd856244e155e7", "message": null } ``` The message will be `null` when creating a lightweight tag otherwise it will contain the annotation. +The target will contain the tag objects ID when creating annotated tags, +otherwise it will contain the commit ID when creating lightweight tags. + In case of an error, status code `405` with an explaining error message is returned. |