Skip to content

Commit 239beaa

Browse files
authored
fix(build): Disable closing milestones during release (#188)
The CI user doesn't have permissions for that. This PR also shortens the release name (it didn't fit in the right panel on the repository landing page) and removes the unused `release.github.commitAuthor` section.
1 parent a3495a0 commit 239beaa

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

build-logic/src/main/kotlin/authmgr-jreleaser.gradle.kts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -123,17 +123,14 @@ gradle.projectsEvaluated {
123123

124124
release {
125125
github {
126-
releaseName.set("{{projectNameCapitalized}} {{projectVersionNumber}}")
126+
releaseName.set("AuthManager {{projectVersionNumber}}")
127127
repoOwner.set("dremio")
128128
name.set("iceberg-auth-manager")
129129
branch.set("main")
130130
tagName.set("authmgr-{{projectVersion}}")
131-
commitAuthor {
132-
name.set("{{projectNameCapitalized}} Release Workflow [bot]")
133-
email.set("authmgr-release-workflow-noreply@dremio.com")
134-
}
135131
milestone {
136-
close.set(true)
132+
// TODO enable when the CI user has permissions to close milestones
133+
close.set(false)
137134
name.set("{{projectVersionNumber}}")
138135
}
139136
issues {

0 commit comments

Comments
 (0)