-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.release-it.json
More file actions
42 lines (42 loc) 路 1.64 KB
/
Copy path.release-it.json
File metadata and controls
42 lines (42 loc) 路 1.64 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
{
"plugins": {
"@release-it/bumper": {
"in": [
"src/man/chrome/manifest.json",
"src/man/chrome-mv2/manifest.json",
"src/man/firefox/manifest.json"
],
"out": [
"src/man/chrome/manifest.json",
"src/man/chrome-mv2/manifest.json",
"src/man/firefox/manifest.json"
]
}
},
"git": {
"requireBranch": "main",
"commitMessage": ":bookmark: feat(all): Release v${version}"
},
"hooks": {
"before:init": [
"git push",
"pnpm lint:fix"
],
"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/stylegpt -d \"馃馃З StyleGPT is an extension that will provide you with tools to customize the appearance of ChatGPT according to your preferences. 馃惁馃寛\"",
"gh repo edit https://github.com/pigeonposse/stylegpt --add-topic javascript,chrome-extension,firefox-extension,safari-extension,opera-extension,opera-gx-extension,brave-extension,edge-extension,browser-extension,extension,chat-gpt,gpt,gpt4,open-ai,openai,ai,web,styles",
"echo 'Github action is now releasing: stylegpt v${version} to https://github.com/pigeonposse/stylegpt.\n Check if all is ok 馃寛馃\n https://github.com/pigeonposse/stylegpt/actions'"
]
},
"github": {
"release": false
},
"npm": {
"release": false
}
}