-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml.example
More file actions
32 lines (30 loc) · 984 Bytes
/
Copy pathconfig.yaml.example
File metadata and controls
32 lines (30 loc) · 984 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
jira:
url: https://your-jira-instance.atlassian.net
# Token can also be set via JIRA2MD_TOKEN environment variable
token: your-personal-access-token
# Map logical field names to Jira custom field IDs.
# Built-in fields (summary, status, description, assignee, priority, etc.)
# are resolved automatically - only map custom fields here.
fields:
story_points: customfield_10006
sprint: customfield_10000
acceptance_criteria: customfield_10035
# Add any custom fields you need:
# t_shirt_size: customfield_12345
# team: customfield_67890
output:
directory: ./export
filename_pattern: "{key}"
# Include issue comments in the Markdown output
include_comments: true
# Which fields to include in the Markdown output, in order.
# Use built-in names or logical names from the fields mapping above.
fields:
- summary
- status
- assignee
- priority
- story_points
- sprint
- acceptance_criteria
- description