-
-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[JEP-229] Updates #332
[JEP-229] Updates #332
Conversation
Co-authored-by: Daniel Beck <1831569+daniel-beck@users.noreply.github.com>
@@ -351,6 +367,14 @@ implements basic aspects of this proposal from the developer side. | |||
link:https://github.com/jenkins-infra/repository-permissions-updater/pull/1747[repository-permissions-updater #1747] | |||
implements changes to infrastructure. | |||
|
|||
link:https://github.com/jenkinsci/plugin-pom/pull/375[plugin-pom #375] and link:https://github.com/jenkinsci/pom/pull/147[pom #147] | |||
add a POM profile to block MRP in CD mode. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is unclear what this is for. Prevent accidental misuse?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, prevents you from running mvn release:prepare release:perform
, which would produce crazy results. If you opt into changelist.format
, you agree not to use MRP.
Release Drafter is configured as an Action as well, but always publishing the draft release under the placeholder name `next` rather than a real version. | ||
This runs (fairly) quickly after PRs are merged, and just updates a draft release. | ||
If and when a release is successfully deployed to Artifactory, the deployment script | ||
link:https://github.com/jglick/jenkins-maven-cd-action/blob/3f1f2fa2739ce0747de9a2545aee5d54917a7abb/run.sh#L5-L8[creates a (lightweight) Git tag and publishes the release]. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is the lightweight bit relevant?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, somewhat; there is a different GitHub API for creating an annotated tag, which I am not doing.
ping @oleg-nenashev or any other JEP editors |
Various updates, but most importantly describing the successfully prototyped integration with Release Drafter and usage of self-published Actions to avoid duplication.