Skip to content

Commit 191ea82

Browse files
authored
chore: add ignored sections into changelog (#120)
1 parent 99cd178 commit 191ea82

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/workflows/initiate_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
VERSION: ${{ github.event.inputs.version }}
2222
run: |
2323
npx --yes [email protected] --release-as "$VERSION" --skip.tag --skip.commit --tag-prefix=v
24-
git config --global user.name 'github-actions'
24+
git config --global user.name 'github-actions'
2525
git config --global user.email '[email protected]'
2626
git checkout -q -b "release-$VERSION"
2727
git commit -am "chore(release): $VERSION"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v3
1616
with:
1717
fetch-depth: 0
18-
18+
1919
- uses: actions/github-script@v6
2020
with:
2121
script: |

.versionrc.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,14 @@ const versionFileUpdater = {
1313

1414
module.exports = {
1515
bumpFiles: [{ filename: './lib/stream-chat/version.rb', updater: versionFileUpdater }],
16+
types: [
17+
{"type": "feat", "section": "Features"},
18+
{"type": "fix", "section": "Bug Fixes"},
19+
{"type": "chore", "section": "Other", "hidden": false},
20+
{"type": "docs", "section": "Other", "hidden": false},
21+
{"type": "style", "section": "Other", "hidden": false},
22+
{"type": "refactor", "section": "Other", "hidden": false},
23+
{"type": "perf", "section": "Other", "hidden": false},
24+
{"type": "test", "section": "Other", "hidden": false}
25+
]
1626
}

0 commit comments

Comments
 (0)