Created
February 8, 2021 19:35
-
-
Save junalmeida/1ed48fd9572deff2860f36fea4f07799 to your computer and use it in GitHub Desktop.
VSCode Jira Extension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"atlascode.jira.jqlList": [ | |
{ | |
"id": "40e3738f-5ff3-4f28-bbb8-8f21c48b7603", | |
"siteId": "4b7fd06c-d254-4cc9-abda-9c9a1552bfa6", | |
"name": "My Issues", | |
"query": "assignee = currentUser() AND resolution = Unresolved AND status != Closed AND status != Resolved ORDER BY updated desc", | |
"enabled": true, | |
"monitor": true | |
}, | |
{ | |
"id": "2ccdb091-7e69-4328-8dac-959795ccebca", | |
"siteId": "4b7fd06c-d254-4cc9-abda-9c9a1552bfa6", | |
"name": "Release bugs", | |
"query": "type = Bug and assignee is EMPTY and resolution = Unresolved and fixVersion is not EMPTY ORDER BY priority desc", | |
"enabled": true, | |
"monitor": true | |
}, | |
{ | |
"id": "55abdd3c-4047-4a69-aecd-2037762d30f7", | |
"siteId": "4b7fd06c-d254-4cc9-abda-9c9a1552bfa6", | |
"name": "Regression Bugs", | |
"query": "type = Bug and assignee is EMPTY and resolution = Unresolved AND summary~ Regression ORDER BY priority desc", | |
"enabled": true, | |
"monitor": true | |
}, | |
{ | |
"id": "a1f93172-0a04-4405-8af0-5e9e93126818", | |
"siteId": "4b7fd06c-d254-4cc9-abda-9c9a1552bfa6", | |
"name": "Not assigned bugs", | |
"query": "resolution = Unresolved and status != closed and type = Bug and assignee IS EMPTY order by priority DESC,updated DESC", | |
"enabled": true, | |
"monitor": true | |
}, | |
{ | |
"id": "b194efbc-1f1a-4cbc-b1cc-d82fa443ec2c", | |
"siteId": "4b7fd06c-d254-4cc9-abda-9c9a1552bfa6", | |
"name": "Ready for staging", | |
"query": "status = \"Ready for Staging\" order by lastViewed DESC", | |
"enabled": true, | |
"monitor": false | |
}, | |
{ | |
"id": "6cecb0b8-2842-487b-b71b-aae3c1bec9fb", | |
"siteId": "4b7fd06c-d254-4cc9-abda-9c9a1552bfa6", | |
"name": "Viewed recently", | |
"query": "issuekey in issueHistory() order by lastViewed DESC", | |
"enabled": true, | |
"monitor": false | |
}, | |
{ | |
"id": "d23a4573-0b04-4aeb-a3f9-a6ca69591af8", | |
"siteId": "4b7fd06c-d254-4cc9-abda-9c9a1552bfa6", | |
"name": "Watched", | |
"query": "watcher = currentUser() AND resolution = unresolved AND status != Closed order by updated DESC", | |
"enabled": true, | |
"monitor": false | |
}, | |
{ | |
"id": "105a521b-b71e-4568-b0cd-adb26490bc9b", | |
"siteId": "4b7fd06c-d254-4cc9-abda-9c9a1552bfa6", | |
"name": "Ready for Test", | |
"query": "status = \"Ready For QA (TEST)\" order by lastViewed DESC", | |
"enabled": true, | |
"monitor": false | |
}, | |
{ | |
"id": "3815e46c-7ff4-42c0-bef6-a05c6d87a32b", | |
"siteId": "4b7fd06c-d254-4cc9-abda-9c9a1552bfa6", | |
"name": "Urgent", | |
"query": "resolution = Unresolved and status != closed and type = Bug and assignee IS EMPTY AND priority =Highest order by updated DESC", | |
"enabled": true, | |
"monitor": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment