forked from sthadka/jai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.yaml
More file actions
51 lines (45 loc) · 976 Bytes
/
Copy pathconfig.example.yaml
File metadata and controls
51 lines (45 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
jira:
url: https://mycompany.atlassian.net
email: me@company.com
token: ${JAI_TOKEN}
sync:
interval: 15m
rate_limit: 10
history: false
fts_fields:
- summary
- description
- labels
db:
path: ~/.local/share/jai/jai.db
me: me@company.com
team: My Team
sync_sources:
- name: my-project
jql: project = MYPROJ ORDER BY updated DESC
- name: another-team
jql: project = OTHER AND team = "Platform"
fields:
overrides:
customfield_12345: team
customfield_67890: story_points
views:
- name: my-work
title: My Work
query: |
SELECT key, summary, status, priority, updated
FROM issues
WHERE assignee_email = '{{me}}'
AND status_category != 'Done'
ORDER BY priority DESC, updated DESC
columns:
- key
- summary
- status
- priority
sort_by: priority
color_rules:
- field: priority
condition: equals
value: Blocker
color: "#ff0000"