From 8a6e46b7bc8d41c15d64777924089c9b4f30c510 Mon Sep 17 00:00:00 2001 From: Peter Corke Date: Mon, 3 Aug 2026 21:35:47 +1000 Subject: [PATCH] ci: commit missing release-please-config.json .github/workflows/release-please.yml has required this file (config-file: release-please-config.json) since the workflow was added, but it was never actually committed -- only ever present as an untracked local file. Confirmed via git history and the complete absence of any release-please bot PR ever having run: the automated release pipeline has been silently non-functional this whole time, despite 39 merged PRs (including real feat: commits) since the last tag, v2.0.1. Content unchanged from the untracked working-tree copy -- release-type python, version-file pyproject.toml, changelog-path CHANGELOG.md, matching the existing .release-please-manifest.json ("." : "2.0.1"). Co-Authored-By: Claude Sonnet 5 --- release-please-config.json | 64 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 release-please-config.json diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 00000000..8d80419e --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,64 @@ +{ + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", + "release-type": "python", + "packages": { + ".": { + "release-type": "python", + "package-name": "machinevision-toolbox-python", + "version-file": "pyproject.toml", + "changelog-path": "CHANGELOG.md", + "include-component-in-tag": false + } + }, + "pull-request-title-pattern": "chore: release ${version}", + "changelog-sections": [ + { + "type": "feat", + "section": "Features" + }, + { + "type": "fix", + "section": "Bug Fixes" + }, + { + "type": "perf", + "section": "Performance Improvements" + }, + { + "type": "deps", + "section": "Dependencies" + }, + { + "type": "revert", + "section": "Reverts" + }, + { + "type": "docs", + "section": "Documentation" + }, + { + "type": "build", + "section": "Build System" + }, + { + "type": "test", + "section": "Tests", + "hidden": true + }, + { + "type": "refactor", + "section": "Code Refactoring", + "hidden": true + }, + { + "type": "chore", + "section": "Miscellaneous", + "hidden": true + }, + { + "type": "ci", + "section": "CI", + "hidden": true + } + ] +}