Skip to content

Commit

Permalink
ci: Add changelog-types to release-please-config.json
Browse files Browse the repository at this point in the history
  • Loading branch information
nioe committed Jul 5, 2024
1 parent 378c6e2 commit 3de0ab4
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 20 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,3 @@ jobs:
- uses: googleapis/release-please-action@v4
with:
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
release-type: node
changelog-types: |
[
{"type":"feat","section":"🚀 Features","hidden":false},
{"type":"fix","section":"🐛 Bug Fixes","hidden":false},
{"type":"perf","section":"↗️ Performance Improvements","hidden":false},
{"type":"revert","section":"🔙 Reverts","hidden":false},
{"type":"docs","section":"📖 Documentation","hidden":false},
{"type":"style","section":"💅 Styles","hidden":false},
{"type":"chore","section":"🧹 Chores","hidden":true},
{"type":"refactor","section":"🛠 Refactorings","hidden":false},
{"type":"test","section":"✅ Tests","hidden":false},
{"type":"build","section":"📦 Build System & Dependencies","hidden":false},
{"type":"ci","section":"🔄 CI/CD","hidden":true}
]
3 changes: 0 additions & 3 deletions .release-please-manifest.json

This file was deleted.

3 changes: 3 additions & 0 deletions TO-DELETE.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "1.0.0"
}
61 changes: 59 additions & 2 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,65 @@
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false
"prerelease": false,
"changelog-sections": [
{
"type": "feat",
"section": "🚀 Features",
"hidden": false
},
{
"type": "fix",
"section": "🐛 Bug Fixes",
"hidden": false
},
{
"type": "perf",
"section": "↗️ Performance Improvements",
"hidden": false
},
{
"type": "revert",
"section": "🔙 Reverts",
"hidden": false
},
{
"type": "docs",
"section": "📖 Documentation",
"hidden": false
},
{
"type": "style",
"section": "💅 Styles",
"hidden": false
},
{
"type": "chore",
"section": "🧹 Chores",
"hidden": true
},
{
"type": "refactor",
"section": "🛠 Refactorings",
"hidden": false
},
{
"type": "test",
"section": "✅ Tests",
"hidden": false
},
{
"type": "build",
"section": "📦 Build System & Dependencies",
"hidden": false
},
{
"type": "ci",
"section": "🔄 CI/CD",
"hidden": true
}
]
}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}
}

0 comments on commit 3de0ab4

Please sign in to comment.