Skip to content

Commit 1f6cbee

Browse files
committed
Merge branch 'release/next'
2 parents 47abc18 + 5dde8f8 commit 1f6cbee

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed

.github/workflows/release-sync.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Release Sync main → develop
2+
3+
on:
4+
workflow_run:
5+
workflows: ["Release Publish"]
6+
types: ["completed"]
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
merge:
13+
if: ${{ github.event.workflow_run.conclusion == 'success' }}
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Merge main → develop
17+
uses: tibdex/merge-branch@v3
18+
with:
19+
source: main
20+
target: develop
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,21 @@
1111
"bugs": {
1212
"url": "https://github.com/addon-stack/storage/issues"
1313
},
14+
"keywords": [
15+
"storage",
16+
"addon",
17+
"extension",
18+
"browser",
19+
"chrome",
20+
"firefox",
21+
"edge",
22+
"opera",
23+
"safari"
24+
],
25+
"author": "Addon Stack <addonbonedev@gmail.com>",
26+
"contributors": [
27+
"Anjey Tsibylskij (https://github.com/atldays)"
28+
],
1429
"exports": {
1530
".": {
1631
"types": "./dist/index.d.ts",

release/shared.cjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ const commonPlugins = [
2828
],
2929
},
3030
writerOpts: {
31-
// Include full commit body in release notes
3231
commitPartial:
33-
"{{#if scope}}**{{scope}}:** {{/if}}{{subject}}\n\n{{#if body}}{{body}}\n{{/if}}",
32+
"{{#if type}}{{#if scope}}**{{scope}}:** {{/if}}{{subject}}\n\n{{#if body}}{{body}}\n{{/if}}{{/if}}",
3433
},
3534
},
3635
],

0 commit comments

Comments
 (0)