Skip to content

Commit 46a0951

Browse files
committed
Revert "Enable CD"
This reverts commit bf021d1.
1 parent 285f957 commit 46a0951

File tree

5 files changed

+65
-19
lines changed

5 files changed

+65
-19
lines changed

.github/release-drafter.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name-template: 'v$RESOLVED_VERSION 🎁'
2+
tag-template: 'v$RESOLVED_VERSION'
3+
4+
template: |
5+
$CHANGES
6+
7+
# Emoji reference: https://gitmoji.carloscuesta.me/
8+
categories:
9+
- title: 💥 Breaking Changes
10+
label: breaking
11+
- title: 🚀 New Features
12+
label: feature
13+
- title: ✨ Improvements
14+
label: enhancement
15+
- title: 🐛 Bug Fixes
16+
label: bug
17+
- title: 📝 Documentation
18+
label: documentation
19+
- title: 📦 Dependency Updates
20+
label: dependencies
21+
- title: 🔧 Internal Changes
22+
label: internal
23+
- title: 🚦 Tests
24+
label: tests
25+
26+
version-resolver:
27+
major:
28+
labels:
29+
- 'removed'
30+
minor:
31+
labels:
32+
- 'feature'
33+
- 'enhancement'
34+
- 'deprecated'
35+
- 'dependencies'
36+
- 'documentation'
37+
- 'tests'
38+
- 'internal'
39+
patch:
40+
labels:
41+
- 'bug'
42+
default: minor
43+
44+
replacers:
45+
- search: '/\[*JENKINS-(\d+)\]*\s*-*\s*/g'
46+
replace: '[JENKINS-$1](https://issues.jenkins.io/browse/JENKINS-$1) - '

.github/workflows/cd.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: 'Release Drafter'
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- main
8+
9+
jobs:
10+
update-release-draft:
11+
name: 'Update Release Draft'
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: release-drafter/release-drafter@v6.1.0
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.mvn/maven.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
-Dchangelist.format=%d.v%s
21
-Pconsume-incrementals
32
-Pmight-produce-incrementals

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<groupId>io.jenkins.plugins</groupId>
1212
<artifactId>plugin-util-api</artifactId>
13-
<version>${revision}.${changelist}</version>
13+
<version>${revision}${changelist}</version>
1414
<packaging>hpi</packaging>
1515
<name>Plugin Utilities API Plugin</name>
1616

@@ -40,8 +40,8 @@
4040
</scm>
4141

4242
<properties>
43-
<revision>6</revision>
44-
<changelist>999999-SNAPSHOT</changelist>
43+
<revision>6.2.0</revision>
44+
<changelist>-SNAPSHOT</changelist>
4545

4646
<module.name>${project.groupId}.plugin.util.api</module.name>
4747

0 commit comments

Comments
 (0)