mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-22 11:33:57 +03:00
5082182ae7
This pull request adds the release-please-core workflow and configuration files. The release-please workflow is triggered on push to the main branch and on manual workflow dispatch. It sets up Python, installs Poetry, configures Poetry, and runs release-please for the backend/core package. The release-please configuration file specifies the release type, package name, bump patch for minor pre-major, changelog notes type, include v in tag, tag separator, and component.
13 lines
340 B
JSON
13 lines
340 B
JSON
{
|
|
"packages": {
|
|
"backend/core": {
|
|
"release-type": "python",
|
|
"package-name": "core",
|
|
"bump-patch-for-minor-pre-major": true,
|
|
"changelog-notes-type": "github",
|
|
"include-v-in-tag": false,
|
|
"tag-separator": "-",
|
|
"component": "core"
|
|
}
|
|
}
|
|
} |