-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.release-it.json
29 lines (29 loc) Β· 1.1 KB
/
.release-it.json
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
{
"git": {
"requireBranch": "main",
"commitMessage": "Release v${version}"
},
"hooks": {
"before:init": [
"git push",
"pnpm lint-fix",
"pnpm check"
],
"after:bump": [
"pnpm auto-changelog -p",
"pnpm readme"
],
"after:git:release": "echo 'After git push, before github release'",
"after:release": [
"gh repo edit https://github.com/pigeonposse/iconflow-themes -d \"π₯β¨ List of mac icons to change your mac by themes and in batch. This can be possible thanks Iconflow π¦π\"",
"gh repo edit https://github.com/pigeonposse/iconflow-themes --add-topic macos-icons,macos-icons-themes,macos-universal,api,icons,icns,png,iconflow",
"echo 'Github action is now releasing: iconflow-themes v${version} to https://github.com/pigeonposse/iconflow-themes.\n Check if all is ok ππ€\n https://github.com/pigeonposse/iconflow-themes/actions'"
]
},
"github": {
"release": false
},
"npm": {
"publish": false
}
}