Skip to content

Commit

Permalink
Improve release drafter configuration definition (#1646)
Browse files Browse the repository at this point in the history
Use weekly release format as the default for the releases.  LTS releases
will need edits to provide them.  If we decide to create a separate
branch for LTS releases, then the release drafter configuration on that
branch could be adjusted to propose LTS version numbers.
  • Loading branch information
MarkEWaite authored May 30, 2023
1 parent 3a87874 commit 10cec2d
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
# https://github.com/jenkinsci/.github/blob/master/.github/release-drafter.adoc
_extends: .github
# We are using 3-digit LTS versioning here
version-template: $MAJOR.$MINOR.$PATCH
tag-template: jenkins-docker-packaging-$NEXT_PATCH_VERSION
name-template: Jenkins Docker Image $NEXT_PATCH_VERSION
# We are using 2-digit weekly versioning here
version-template: $MAJOR.$MINOR
tag-template: $NEXT_MINOR_VERSION
name-template: $NEXT_MINOR_VERSION
template: |
<!-- Optional: add a release summary here -->
## 📦 Jenkins Core updates
* Update to Jenkins $NEXT_PATCH_VERSION ([changelog](https://jenkins.io/changelog-stable/#v$NEXT_PATCH_VERSION))
## 📦 Jenkins Core updates
* Update to Jenkins $NEXT_MINOR_VERSION ([changelog](https://jenkins.io/changelog-stable/#v$NEXT_MINOR_VERSION))
$CHANGES
**NOTE:** This is an experimental changelog. See [this page](https://github.com/jenkinsci/docker/blob/master/CHANGELOG.md) for more info

0 comments on commit 10cec2d

Please sign in to comment.