Skip to content

Commit

Permalink
feat(CLOUDDEV-432): fix test new ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Davydov committed Apr 23, 2024
1 parent 4ecc42b commit eda72ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/scripts/createProject.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type Project struct {
func main() {
baseURL := "https://api.edgecenter.online/cloud/v1/projects"
randomProjectName := fmt.Sprintf("terraform-test-%s", random.UniqueId())
description := "temp project created for test terraform resource."
description := fmt.Sprintf("Project for test terraform resource. Ref Name: %s", os.Getenv("GITHUB_REF_NAME"))

payload := strings.NewReader(fmt.Sprintf(`{"name": "%s", "description": "%s"}`, randomProjectName, description))

Expand Down

0 comments on commit eda72ed

Please sign in to comment.