my dotz
0

Configure Feed

Select the types of activity you want to include in your feed.

1endpoint: https://do-internal.atlassian.net 2user: jolson 3login: jolson@digitalocean.com 4jira-deployment-type: cloud 5authentication-method: api-token 6 7project: uptime 8 9queries: 10 all: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done 11 initiatives: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done AND issuetype = Initiative 12 epics: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status NOT IN ("Declined", "Done") AND issuetype = Epic 13 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 14 old-epics: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status IN ("Done") AND issuetype = Epic 15 issues: (assignee in membersOf("Machines-Configuration") or "Team[Team]" = 78222cae-690d-4584-975b-9e84aef003f4) AND status != Done 16 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) 17 18custom-commands: 19 - name: epics 20 help: testing epic listy 21 options: 22 - name: abc 23 short: a 24 default: default 25 - name: day 26 type: ENUM 27 enum: 28 - Monday 29 - Tuesday 30 - Wednesday 31 - Thursday 32 - Friday 33 required: true 34 args: 35 - name: ARG 36 required: true 37 - name: MORE 38 repeat: true 39 script: | 40 echo COMMAND {{args.ARG}} --abc {{options.abc}} --day {{options.day}} {{range $more := args.MORE}}{{$more}} {{end}} 41