Skip to content

Commit

Permalink
chore: add ignored sections into changelog (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
ferhatelmas authored Nov 17, 2022
1 parent 99cd178 commit 191ea82
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/initiate_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
VERSION: ${{ github.event.inputs.version }}
run: |
npx --yes [email protected] --release-as "$VERSION" --skip.tag --skip.commit --tag-prefix=v
git config --global user.name 'github-actions'
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
git checkout -q -b "release-$VERSION"
git commit -am "chore(release): $VERSION"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: actions/github-script@v6
with:
script: |
Expand Down
10 changes: 10 additions & 0 deletions .versionrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,14 @@ const versionFileUpdater = {

module.exports = {
bumpFiles: [{ filename: './lib/stream-chat/version.rb', updater: versionFileUpdater }],
types: [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "chore", "section": "Other", "hidden": false},
{"type": "docs", "section": "Other", "hidden": false},
{"type": "style", "section": "Other", "hidden": false},
{"type": "refactor", "section": "Other", "hidden": false},
{"type": "perf", "section": "Other", "hidden": false},
{"type": "test", "section": "Other", "hidden": false}
]
}

0 comments on commit 191ea82

Please sign in to comment.