Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
fix: trim names input
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiht committed May 5, 2023
1 parent 342c1d9 commit d1927b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github-action/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func getContainerIds(qoveryAPIClient pkg.QoveryAPIClient, envId string, id *stri

if name != nil && *name != "" {
var ids []string
for _, sName := range strings.Split(*name, ",") {
for _, sName := range strings.Split(sanitizeInputIDsList(*name), ",") {
id, err := qovery.GetContainerIdByName(qoveryAPIClient, envId, sName)
handleError(err)

Expand Down

0 comments on commit d1927b9

Please sign in to comment.