Skip to content

Commit

Permalink
#14 Add custom fields and issue type
Browse files Browse the repository at this point in the history
  • Loading branch information
CamaradeRoman committed Oct 16, 2023
1 parent 289e5bd commit 1735bc9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ public enum IssueTypeEnum {
ENHANCEMENT("Enhancement"),
HOTFIX("Hotfix"),
DOCUMENTATION("Documentation"),
EPIC("Epic");
EPIC("Epic"),
PRODUCT_CARD("Product Card");



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,23 @@ public enum JiraCustomField {
HOTFIX_TARGET_TYPE("Hotfix Target Type"),
SYSTEM("System"),
SPRINT("Sprint"),
CLEAR_SPRINT_ON_RESOLVE("Clear Sprint on Resolve");
CLEAR_SPRINT_ON_RESOLVE("Clear Sprint on Resolve"),
PDM("PDM"),
DEVELOPERS("Developers"),
APPLICATION_ARCHITECT("Application Architect"),
SYSTEM_ARCHITECT("System Architect"),
TESTERS("Testers"),
DELIVERY_CONSULTANTS("Delivery Consultants"),
TECHWRITERS("Techwriters"),
TRANSLATORS("Translators"),
NOTES_VERIFIERS("Notes Verifiers"),
ACADEMY("Academy"),
PRODUCT_MARKETING_MANAGER("Product Marketing Manager"),
PRINCIPAL_PDM("Principal PDM"),
TECH_LEAD("Tech Lead"),
TEST_LEAD("Test Lead"),
RELEASE_MANAGER("Release Manager");


private final String name;

Expand Down

0 comments on commit 1735bc9

Please sign in to comment.