Skip to content

Commit 7849a46

Browse files
feat(resources): add default files
1 parent efb5ac3 commit 7849a46

File tree

2 files changed

+69
-0
lines changed

2 files changed

+69
-0
lines changed

resources/default.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
PROMPT:
2+
- KEY: "CHANGE"
3+
LABEL: "Type of change"
4+
OPTIONS:
5+
- VALUE: "feat"
6+
DESC: "Add new feature"
7+
- VALUE: "fix"
8+
DESC: "A bug fix"
9+
- VALUE: "test"
10+
DESC: "Adding missing tests or correcting ones"
11+
- VALUE: "chore"
12+
DESC: "Add non bussiness logic change"
13+
- VALUE: "style"
14+
DESC: "A code change to improve clean code"
15+
- VALUE: "ci/cd"
16+
DESC: "Changes on the build system or CI files"
17+
- VALUE: "refactor"
18+
DESC: "A code change"
19+
- VALUE: "docs"
20+
DESC: "Documentation changes"
21+
- KEY: "MODULE"
22+
LABEL: "Affected module"
23+
- KEY: "MESSAGE"
24+
LABEL: "Commit message"
25+
- KEY: "LABEL"
26+
LABEL: "Label"
27+
OPTIONS:
28+
- VALUE: ""
29+
DESC: "No label"
30+
- VALUE: "[CI SKIP]"
31+
DESC: "Skip continous integration pipeline"
32+
- VALUE: "[WIP]"
33+
DESC: "Work In Progress"
34+
TEMPLATE: "{{CHANGE}}({{MODULE}}): {{MESSAGE}} {{LABEL}}"

resources/jira.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
PROMPT:
2+
- KEY: "JIRA-TASK"
3+
LABEL: "Jira task ID"
4+
DEFAULT_VALUE: "{{BRANCH_NAME}}"
5+
- KEY: "CHANGE"
6+
LABEL: "Type of change"
7+
OPTIONS:
8+
- VALUE: "feat"
9+
DESC: "Add new feature"
10+
- VALUE: "fix"
11+
DESC: "A bug fix"
12+
- VALUE: "test"
13+
DESC: "Adding missing tests or correcting ones"
14+
- VALUE: "chore"
15+
DESC: "Add non bussiness logic change"
16+
- VALUE: "style"
17+
DESC: "A code change to improve clean code"
18+
- VALUE: "ci/cd"
19+
DESC: "Changes on the build system or CI files"
20+
- VALUE: "refactor"
21+
DESC: "A code change"
22+
- VALUE: "docs"
23+
DESC: "Documentation changes"
24+
- KEY: "MESSAGE"
25+
LABEL: "Commit message"
26+
- KEY: "LABEL"
27+
LABEL: "Label"
28+
OPTIONS:
29+
- VALUE: ""
30+
DESC: "No label"
31+
- VALUE: "[CI SKIP]"
32+
DESC: "Skip continous integration pipeline"
33+
- VALUE: "[WIP]"
34+
DESC: "Work In Progress"
35+
TEMPLATE: "{{JIRA-TASK}} ({{CHANGE}}): {{MESSAGE}} {{LABEL}}"

0 commit comments

Comments
 (0)