Skip to content

Commit

Permalink
ci(release): fix jsonpath (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugobloem authored Nov 3, 2024
1 parent 8547d54 commit 8c14432
Showing 1 changed file with 124 additions and 27 deletions.
151 changes: 124 additions & 27 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,41 +3,138 @@
"release-type": "python",
"extra-files": [
{
"type": "json",
"path": "custom_components/stateful_scenes/manifest.json",
"type": "json",
"path": "custom_components/stateful_scenes/manifest.json",
"jsonpath": "$.version"
}
],
"packages": {
".": {
"release-type": "python",
"changelog-sections": [
{"section": "🚀 Features", "type": "feat", "hidden": false},
{"section": "🐛 Bugfixes", "type": "fix", "hidden": false},
{"section": "📝 Documentation", "type": "docs", "hidden": false},
{"section": "⬆️ Dependency updates", "type": "deps", "hidden": false},
{"section": "🔨 Code Refactoring", "type": "refactor", "hidden": false},
{"section": "🧪 Tests", "type": "test", "hidden": false},
{"section": "⏪️ Reverts", "type": "revert", "hidden": false},
{"section": "⚡️ Performance Improvements", "type": "perf", "hidden": false},
{"section": "🏗️ Maintenance", "type": "build", "hidden": false},
{"section": "🎨 Styles", "type": "style", "hidden": false},
{"section": "🔧 Miscellaneous Chores", "type": "chore", "hidden": false},
{"section": "👷 Continuous Integration", "type": "ci", "hidden": false}
{
"section": "🚀 Features",
"type": "feat",
"hidden": false
},
{
"section": "🐛 Bugfixes",
"type": "fix",
"hidden": false
},
{
"section": "📝 Documentation",
"type": "docs",
"hidden": false
},
{
"section": "⬆️ Dependency updates",
"type": "deps",
"hidden": false
},
{
"section": "🔨 Code Refactoring",
"type": "refactor",
"hidden": false
},
{
"section": "🧪 Tests",
"type": "test",
"hidden": false
},
{
"section": "⏪️ Reverts",
"type": "revert",
"hidden": false
},
{
"section": "⚡️ Performance Improvements",
"type": "perf",
"hidden": false
},
{
"section": "🏗️ Maintenance",
"type": "build",
"hidden": false
},
{
"section": "🎨 Styles",
"type": "style",
"hidden": false
},
{
"section": "🔧 Miscellaneous Chores",
"type": "chore",
"hidden": false
},
{
"section": "👷 Continuous Integration",
"type": "ci",
"hidden": false
}
]
}
},
"changelog-sections": [
{"section": "🚀 Features", "type": "feat", "hidden": false},
{"section": "🐛 Bugfixes", "type": "fix", "hidden": false},
{"section": "📝 Documentation", "type": "docs", "hidden": false},
{"section": "⬆️ Dependency updates", "type": "deps", "hidden": false},
{"section": "🔨 Code Refactoring", "type": "refactor", "hidden": false},
{"section": "🧪 Tests", "type": "test", "hidden": false},
{"section": "⏪️ Reverts", "type": "revert", "hidden": false},
{"section": "⚡️ Performance Improvements", "type": "perf", "hidden": false},
{"section": "🏗️ Maintenance", "type": "build", "hidden": false},
{"section": "🎨 Styles", "type": "style", "hidden": false},
{"section": "🔧 Miscellaneous Chores", "type": "chore", "hidden": false},
{"section": "👷 Continuous Integration", "type": "ci", "hidden": false}
{
"section": "🚀 Features",
"type": "feat",
"hidden": false
},
{
"section": "🐛 Bugfixes",
"type": "fix",
"hidden": false
},
{
"section": "📝 Documentation",
"type": "docs",
"hidden": false
},
{
"section": "⬆️ Dependency updates",
"type": "deps",
"hidden": false
},
{
"section": "🔨 Code Refactoring",
"type": "refactor",
"hidden": false
},
{
"section": "🧪 Tests",
"type": "test",
"hidden": false
},
{
"section": "⏪️ Reverts",
"type": "revert",
"hidden": false
},
{
"section": "⚡️ Performance Improvements",
"type": "perf",
"hidden": false
},
{
"section": "🏗️ Maintenance",
"type": "build",
"hidden": false
},
{
"section": "🎨 Styles",
"type": "style",
"hidden": false
},
{
"section": "🔧 Miscellaneous Chores",
"type": "chore",
"hidden": false
},
{
"section": "👷 Continuous Integration",
"type": "ci",
"hidden": false
}
]
}
}

0 comments on commit 8c14432

Please sign in to comment.