fix: improve release please configuration (#84) (#87)

(cherry picked from commit 368f3fbb44)

Signed-off-by: matttrach <matt.trachier@suse.com>
Co-authored-by: Matt Trachier <matt.trachier@suse.com>
This commit is contained in:
github-actions[bot] 2025-08-26 00:17:42 -05:00 committed by GitHub
parent e8ac3cb57a
commit e577d80722
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 11 additions and 5 deletions

View File

@ -1,6 +1,6 @@
## Related Issue
Addresses # (main issue)
Addresses #
<!--- Add release labels (eg. release/v0) for each target release --->

View File

@ -21,7 +21,6 @@ jobs:
name: release-please
id: release-please
with:
release-type: go
target-branch: ${{ github.ref_name }}
config-file: release-please-config.json
manifest-file: .release-please-manifest.json

View File

@ -1,3 +1,3 @@
{
"./": "0.1.0"
".": "0.1.0"
}

View File

@ -1,5 +1,12 @@
{
"packages": {
"./": {}
}
".": {
"release-type": "go",
"prerelease": true,
"include-v-in-tag": true,
"always-update": true,
"initial-version": "v0.1.0"
}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}