-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.releaserc.json
More file actions
44 lines (44 loc) · 1.41 KB
/
Copy path.releaserc.json
File metadata and controls
44 lines (44 loc) · 1.41 KB
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
34
35
36
37
38
39
40
41
42
43
44
{
"branches": ["main"],
"plugins": [
[
"semantic-release-gitmoji",
{
"releaseRules": {
"major": [":boom:"],
"minor": [":sparkles:", ":rocket:"],
"patch": [
":bug:", ":ambulance:", ":memo:", ":zap:", ":recycle:",
":art:", ":wrench:", ":lock:", ":arrow_up:", ":fire:",
":wastebasket:", ":truck:", ":construction_worker:",
":green_heart:", ":white_check_mark:", ":rotating_light:",
":chart_with_upwards_trend:", ":heavy_plus_sign:",
":heavy_minus_sign:", ":globe_with_meridians:",
":pencil2:", ":rewind:", ":package:", ":alien:",
":bento:", ":wheelchair:", ":speech_balloon:",
":card_file_box:", ":children_crossing:",
":building_construction:", ":iphone:", ":clown_face:",
":egg:", ":see_no_evil:", ":camera_flash:",
":alembic:", ":mag:", ":label:", ":seedling:",
":triangular_flag_on_post:", ":goal_net:",
":dizzy:", ":wastebasket:", ":passport_control:",
":adhesive_bandage:", ":monocle_face:"
]
}
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": ["CHANGELOG.md"],
"message": ":bookmark: release: v${nextRelease.version}"
}
]
]
}