-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add release-please-core workflow and configuration files
This commit adds the release-please-core workflow and configuration files for the python package in the backend. 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.
- Loading branch information
1 parent
318b615
commit 07d25e4
Showing
3 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +0,0 @@ | ||
{ | ||
"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" | ||
} | ||
} | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"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" | ||
} | ||
} | ||
} |