You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 20, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: src/GitReleaseNotes/GitReleaseNotesArguments.cs
+16-1Lines changed: 16 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ public class GitReleaseNotesArguments
12
12
[Description("Enables verbose logging")]
13
13
publicboolVerbose{get;set;}
14
14
15
-
[Description("Specifies the issue tracker used, possible Options: GitHub")]
15
+
[Description("Specifies the issue tracker used, possible Options: GitHub, Jira")]
16
16
publicIssueTracker?IssueTracker{get;set;}
17
17
18
18
[Description("Speficy the tag name to start from, default is the last tag on master")]
@@ -21,6 +21,21 @@ public class GitReleaseNotesArguments
21
21
[Description("GitHub access token")]
22
22
publicstringToken{get;set;}
23
23
24
+
[Description("Jira Username")]
25
+
publicstringUsername{get;set;}
26
+
27
+
[Description("Jira Password")]
28
+
publicstringPassword{get;set;}
29
+
30
+
[Description("Jira project Id")]
31
+
publicstringJiraProjectId{get;set;}
32
+
33
+
[Description("Jql query for closed issues you would like included if mentioned. Defaults to project = <YOURPROJECTID> AND (issuetype = Bug OR issuetype = Story OR issuetype = \"New Feature\") AND status in (Closed, Done, Resolved)")]
34
+
publicstringJql{get;set;}
35
+
36
+
[Description("Url of Jira server")]
37
+
publicstringJiraServer{get;set;}
38
+
24
39
[Description("GitHub Repository name, in Organisation/Repository format")]
0 commit comments