|
1 | 1 | # Release Branches |
2 | 2 | branches: [ master, main ] |
3 | 3 |
|
4 | | -# gitmoji semver settings (default is none) |
| 4 | +# gitmoji semver settings |
| 5 | +# You can override the default values to suit your project. |
5 | 6 | semver: |
6 | | - major: |
7 | | - - boom # Introduce breaking changes. |
8 | | - |
9 | | - minor: |
10 | | - - sparkles # Introduce new features. |
11 | | - - lipstick # Add or update the UI and style files. |
12 | | - - tada # Begin a project. |
13 | | - - globe_with_meridians # Internationalization and localization. |
14 | | - - bento # Add or update assets. |
15 | | - - wheelchair # Improve accessibility. |
16 | | - - children_crossing # Improve user experience / usability. |
17 | | - - iphone # Work on responsive design. |
18 | | - - egg # Add or update an easter egg. |
19 | | - - triangular_flag_on_post # Add, update, or remove feature flags. |
20 | | - - dizzy # Add or update animations and transitions. |
21 | | - |
22 | | - patch: |
23 | | - - art # Improve structure / format of the code. |
24 | | - - zap # Improve performance. |
25 | | - - fire # Remove code or files. |
26 | | - - bug # Fix a bug. |
27 | | - - ambulance # Critical hotfix. |
28 | | - - white_check_mark # Add or update tests. |
29 | | - - lock # Fix security issues. |
30 | | - - rotating_light # Fix compiler / linter warnings. |
31 | | - - green_heart # Fix CI Build. |
32 | | - - arrow_down # Downgrade dependencies. |
33 | | - - arrow_up # Upgrade dependencies. |
34 | | - - pushpin # Pin dependencies to specific versions. |
35 | | - - construction_worker # Add or update CI build system. |
36 | | - - chart_with_upwards_trend # Add or update analytics or track code. |
37 | | - - recycle # Refactor code. |
38 | | - - heavy_plus_sign # Add a dependency. |
39 | | - - heavy_minus_sign # Remove a dependency. |
40 | | - - wrench # Add or update configuration files. |
41 | | - - hammer # Add or update development scripts. |
42 | | - - package # Add or update compiled files or packages. |
43 | | - - alien # Update code due to external API changes. |
44 | | - - truck # Move or rename resources (e.g.: files, paths, routes). |
45 | | - - page_facing_up # Add or update license. |
46 | | - - card_file_box # Perform database related changes. |
47 | | - - loud_sound # Add or update logs. |
48 | | - - mute # Remove logs. |
49 | | - - building_construction # Make architectural changes. |
50 | | - - mag # Improve SEO. |
51 | | - - label # Add or update types. |
52 | | - - goal_net # Catch errors. |
53 | | - |
54 | | - none: |
55 | | - - memo # Add or update documentation. |
56 | | - - rocket # Deploy stuff. |
57 | | - - bookmark # Release / Version tags. |
58 | | - - pencil2 # Fix typos. |
59 | | - - poop # Write bad code that needs to be improved. |
60 | | - - rewind # Revert changes. |
61 | | - - twisted_rightwards_arrows # Merge branches. |
62 | | - - bulb # Add or update comments in source code. |
63 | | - - beers # Write code drunkenly. |
64 | | - - speech_balloon # Add or update text and literals. |
65 | | - - busts_in_silhouette # Add or update contributor(s). |
66 | | - - clown_face # Mock things. |
67 | | - - see_no_evil # Add or update a .gitignore file. |
68 | | - - camera_flash # Add or update snapshots. |
69 | | - - alembic # Perform experiments. |
70 | | - - seedling # Add or update seed files. |
71 | | - - wastebasket # Deprecate code that needs to be cleaned up. |
72 | | - |
73 | | - # not add in release-template.hbs |
74 | | - ignore: |
| 7 | + # minor: |
| 8 | + # - lipstick |
| 9 | + # patch: |
| 10 | + # - art |
| 11 | + # none: # gitmoji.json `"semver": null` is convert to none |
| 12 | + # - pencil2 |
| 13 | + ignore: # not add in release-template.hbs |
75 | 14 | - construction # Work in progress. |
0 commit comments