Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2

updates:
- package-ecosystem: npm
directory: /
interval: daily
commit-message:
prefix: 'build(deps):'
17 changes: 2 additions & 15 deletions .github/release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
{
"packages": {
".": {
"changelog-path": "CHANGELOG.md",
"release-type": "node",
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false,
"include-component-in-tag": false
"changelog-path": "CHANGELOG.md"
}
},
"include-component-in-tag": false,
"changelog-sections": [
{
"section": "🚀 Features",
Expand All @@ -27,14 +22,6 @@
"section": "🐛 Bug Fixes",
"type": "perf"
},
{
"section": "⬆️ Dependency updates",
"type": "deps"
},
{
"section": "🧰 Maintenance",
"type": "chore"
},
{
"section": "🧰 Maintenance",
"type": "refactor"
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,5 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
package-name: '@doist/reactist'
config-file: .github/release-please-config.json
manifest-file: .github/release-please-manifest.json
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,16 @@ This project uses [release-please](https://github.com/googleapis/release-please)

- `feat:` for new features (minor version bump)
- `fix:` for bug fixes (patch version bump)
- `feat!:` or `fix!:` for breaking changes (major version bump)
- `style:` for code style changes
- `perf:` for performance improvements
- `refactor:` for refactoring code
- `test:` for adding/updating tests
- `build:` for build/dependency changes
- `docs:` for documentation changes
- `chore:` for maintenance tasks
- `ci:` for CI changes
- `revert:` for reverting previous commits
- `feat!:` or `fix!:` for breaking changes (major version bump)
- `chore:` for maintenance tasks (NOTE: these are not included in the changelog)

2. When commits are pushed to `main`:

Expand Down
Loading