Skip to content

Commit 26e4578

Browse files
CI: add jirasync for gh issues (#121)
1 parent 4f04eb7 commit 26e4578

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/.jira_sync_config.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
settings:
2+
# Jira project key to create the issue in
3+
jira_project_key: "KU"
4+
5+
# Dictionary mapping GitHub issue status to Jira issue status
6+
status_mapping:
7+
opened: Untriaged
8+
closed: done
9+
10+
# (Optional) Jira project components that should be attached to the created issue
11+
# Component names are case-sensitive
12+
components:
13+
- Microk8s snap
14+
15+
# (Optional) GitHub labels. Only issues with one of those labels will be synchronized.
16+
# If not specified, all issues will be synchronized
17+
# labels: []
18+
19+
# (Optional) (Default: false) Add a new comment in GitHub with a link to Jira created issue
20+
add_gh_comment: false
21+
22+
# (Optional) (Default: true) Synchronize issue description from GitHub to Jira
23+
sync_description: true
24+
25+
# (Optional) (Default: true) Synchronize comments from GitHub to Jira
26+
sync_comments: true
27+
28+
# (Optional) (Default: None) Parent Epic key to link the issue to
29+
epic_key: "KU-925"
30+
31+
# (Optional) Dictionary mapping GitHub issue labels to Jira issue types.
32+
# If label on the issue is not in specified list, this issue will be created as a Bug
33+
label_mapping:
34+
enhancement: Story

0 commit comments

Comments
 (0)