-
Notifications
You must be signed in to change notification settings - Fork 47
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
minor: Added DueDate support for creating Jira #185
Conversation
Hi @lili2311 I just realized you had an issue merging my branch 😞
|
722f434
to
1cf240b
Compare
Added the optional flag for the due date built-in flag. Updated README with instructions
1cf240b
to
7c4c4f4
Compare
* minor: Adding new flag: canAutoPR (#187) Thi is to address #182 Co-authored-by: Troy Havelock <[email protected]> * minor: Added DueDate support for creating Jira (#185) Added the optional flag for the due date built-in flag. Updated README with instructions Co-authored-by: Alexandre Vallières-Lagacé <[email protected]> Co-authored-by: Troy Havelock <[email protected]> Co-authored-by: Alexandre Vallières-Lagacé <[email protected]>
Added the optional flag for the due date built-in flag. Updated README with instructions Co-authored-by: Alexandre Vallières-Lagacé <[email protected]>
Added the optional flag for the due date built-in flag. Updated README with instructions Co-authored-by: Alexandre Vallières-Lagacé <[email protected]>
major: Migrate to REST List Projects API This is to address #182 Co-authored-by: Troy Havelock <[email protected]> * minor: Added DueDate support for creating Jira (#185) Added the optional flag for the due date built-in flag. Updated README with instructions Co-authored-by: Alexandre Vallières-Lagacé <[email protected]> * minor: align urls with the recommended domains and paths (#192) Switch from: - `snyk.io/api` to `api.snyk.io` - `api.snyk.io/api` to `api.snyk.io` - `snyk.io/vuln` to `security.snyk.io/vuln` - `api.snyk.io/v3` to `api.snyk.io/rest` * minor: use public utility container for github releasing tool (#194) * major: Migrate to REST List Projects API (#199) --------- Co-authored-by: Jeff B <[email protected]> Co-authored-by: Troy Havelock <[email protected]> Co-authored-by: Alexandre Vallières-Lagacé <[email protected]> Co-authored-by: Jérémy Lourenço <[email protected]> Co-authored-by: aarlaud <[email protected]> Co-authored-by: Jeff B <[email protected]>
@@ -31,6 +31,7 @@ type Field struct { | |||
Assignees *Assignee `json:"assignee,omitempty"` | |||
Priority *PriorityType `json:"priority,omitempty"` | |||
Labels []string `json:"labels,omitempty"` | |||
DueDate string `json:"dueDate,omitempty"` |
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.
This should be => DueDate string json:"due**d**ate,omitempty"
D small letter
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.
It seems to be different for you. I've been running like this for months and it matched our Jira Cloud due date field.
Added the optional flag for the due date built-in flag. Updated README with instructions
What this does
Bringing in #179