forked from walmartdigital/commit-message-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cmf.yaml
33 lines (33 loc) · 946 Bytes
/
.cmf.yaml
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
PROMPT:
- KEY: "JIRA-TASK"
LABEL: "Jira task ID"
DEFAULT_VALUE: "{{BRANCH_NAME}}"
- KEY: "CHANGE"
LABEL: "Type of change"
OPTIONS:
- VALUE: "feature"
DESC: "Add new feature"
- VALUE: "fix"
DESC: "A bug fix"
- VALUE: "test"
DESC: "Adding missing tests or correcting ones"
- VALUE: "style"
DESC: "A code change to improve clean code"
- VALUE: "build-ci"
DESC: "Changes on the build system or CI files"
- VALUE: "refactor"
DESC: "A code change"
- VALUE: "docs"
DESC: "Documentation only changes"
- KEY: "MESSAGE"
LABEL: "Commit message"
- KEY: "LABEL"
LABEL: "Label"
OPTIONS:
- VALUE: ""
DESC: "No label"
- VALUE: "[CI SKIP]"
DESC: "Skip continous integration pipeline"
- VALUE: "[WIP]"
DESC: "Work In Progress"
TEMPLATE: "{{JIRA-TASK}} ({{CHANGE}}): {{MESSAGE}}{{LABEL}}"