.jira.d/config.yml
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
endpoint: https://do-internal.atlassian.net
user: jolson
login: jolson@digitalocean.com
jira-deployment-type: cloud
authentication-method: api-token
project: uptime
queries:
all: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done
initiatives: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done AND issuetype = Initiative
epics: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status NOT IN ("Declined", "Done") AND issuetype = Epic
wip-epics: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status NOT IN ("Declined", "Done", "Open") AND issuetype = Epic
old-epics: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status IN ("Done") AND issuetype = Epic
issues: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done
2024q1c1: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status = Done AND (status changed to Done after 2024-01-11 AND status changed to Done before 2024-02-18)
custom-commands:
- name: epics
help: testing epic listy
options:
- name: abc
short: a
default: default
- name: day
type: ENUM
enum:
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
required: true
args:
- name: ARG
required: true
- name: MORE
repeat: true
script: |
echo COMMAND {{args.ARG}} --abc {{options.abc}} --day {{options.day}} {{range $more := args.MORE}}{{$more}} {{end}}