-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplan
More file actions
52 lines (29 loc) · 1.78 KB
/
plan
File metadata and controls
52 lines (29 loc) · 1.78 KB
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
52
Quick wins (1–2 files, minimal API wrangling)
Git branch flow: jira feat "summary" → create issue → git checkout -b feat/PP-123-summary.
~~CSV export: ticket list -p PP --csv > issues.csv for reporting.~~
Debug mode: --debug to print the exact JQL and request/response on failures.
~~Unassigned filter: ticket list -p PP --unassigned.~~
Useful day‑to‑day ops
~~Transitions: ticket transition PP-123 --to "In Progress" (lists choices if omitted).~~
~~Assign to me: ticket assign PP-123 --me (resolves current user).~~
Watch/Unwatch: ticket watch PP-123, ticket unwatch PP-123.
Attachments: ticket attach PP-123 ./file.log (multipart upload).
Show details: ticket show PP-123 with key fields + last comments.
Creation power‑ups
Templates: ticket create --template bug.yaml (pre-fill fields/labels/priority).
Custom fields: --cf customfield_12345="Value" (generic pass‑through).
Component/version: --component API --fix-version "Q3 2025".
Listing / filtering upgrades
Date filters: --updated-since "2025-08-01" / --created-since 7d.
Sort: --sort "updated DESC" (JQL ORDER BY passthrough).
Pagination: --page 2 --page-size 50.
Config & UX
Profiles: jira config profile add work ... then --profile work.
Repo defaults: read .jira.json in the repo (project, labels, branch prefix).
Shell completion: jira --install-completion for zsh/bash.
Better errors: parse Jira error bodies and surface friendly messages.
Automation / team workflows
Bulk ops: ticket bulk --jql 'project=PP AND status="To Do"' --assign --me.
SLA/age view: ticket list --age (shows days since created/updated, colorize > N days).
Notifications: ticket remind PP-123 --when "tomorrow 9am" (local reminder hook).
PR helper (if you use Bitbucket/GitHub): jira pr --from current-branch --title "[PP-123] ...", link back to Jira.