-
Notifications
You must be signed in to change notification settings - Fork 475
#1010 get .gitlab-ci.yml template #1026
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Added Gitlab CI YAML templates API
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The change looks good to me. Thank you for this contribution.
I will test this manually and merge.
* | ||
* @see <a href="https://https://docs.gitlab.com/ee/api/templates/gitlab_ci_ymls.html">GitLab CI YAML API</a> | ||
*/ | ||
public class CiYamlTemplatesApi extends AbstractApi { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the class should be named CiYaml
or GitLabCiYaml
to match the title of the docs GitLab CI YAML API
https://docs.gitlab.com/ee/api/templates/gitlab_ci_ymls.html
@@ -0,0 +1,49 @@ | |||
package org.gitlab4j.api.models; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong package
/** | ||
* This class provides an entry point to all the GitLab CI YAML API calls. | ||
* | ||
* @see <a href="https://https://docs.gitlab.com/ee/api/templates/gitlab_ci_ymls.html">GitLab CI YAML API</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
link is wrong
Added Gitlab CI YAML templates API
Fixes #1010