Skip to content
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

feat: Print a warning message when an invalid custom field is specified. #525

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions pkg/jira/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ package jira
import (
"context"
"encoding/json"
"fmt"
"net/http"
"os"
"strconv"
"strings"

Expand Down Expand Up @@ -196,11 +198,13 @@ func constructCustomFields(fields map[string]string, data *createRequest) {
data.Fields.M.customFields = make(customField)

for key, val := range fields {
found := false
for _, configured := range configuredFields {
identifier := strings.ReplaceAll(strings.ToLower(strings.TrimSpace(configured.Name)), " ", "-")
if identifier != strings.ToLower(key) {
continue
}
found = true

switch configured.Schema.DataType {
case customFieldFormatOption:
Expand Down Expand Up @@ -230,6 +234,9 @@ func constructCustomFields(fields map[string]string, data *createRequest) {
data.Fields.M.customFields[configured.Key] = val
}
}
if !found {
fmt.Fprintf(os.Stderr, "\nInvalid custom field specified: %s\n", key)
}
}
}

Expand Down