gitlab4j-api
gitlab4j-api copied to clipboard
The createProject method does not effectively pass the autoDevopsEnabled parameter.
Issue Description
When calling the createProject method, the auto_devops_enabled parameter is not being passed effectively. As a result, the auto_devops_enabled setting cannot be set to false in the newly created projects as expected.
Steps to Reproduce
- Call the
createProjectmethod with theauto_devops_enabledparameter set tofalse. - Verify the newly created project settings in GitLab.
Expected Behavior
The auto_devops_enabled setting should be false in the newly created project.
Actual Behavior
The auto_devops_enabled setting remains true in the newly created project.
Environment
- GitLab Version: 17.3
- Java Version: openjdk1.8.0_242
- Library Version(s): gitlab4j-api:5.6.0
Additional Information
Here is the method signature that I am using:
org.gitlab4j.api.models.Project createProject(org.gitlab4j.api.models.Project project, String path);