-
Notifications
You must be signed in to change notification settings - Fork 7
/
jreleaser.yml
78 lines (75 loc) · 1.87 KB
/
jreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
project:
name: quadtree
version: 0.1.0
versionPattern: SEMVER
description: A point and spatial quad tree implementation for Java.
longDescription: |
A point and spatial quad tree implementation for Java.
website: https://github.com/metaloom/JavaQuadTree
authors:
- Johannes Schüth
license: Apache-2.0
extraProperties:
inceptionYear: 2011
release:
github:
branch: master
username: jotschi
overwrite: true
milestone:
name: '{{projectVersion}}'
changelog:
sort: DESC
formatted: ALWAYS
format: '- {{commitShortHash}} {{commitTitle}}'
labelers:
- label: 'feature'
title: 'Resolves #'
body: 'Resolves #'
- label: 'issue'
title: 'Fixes #'
body: 'Fixes #'
- label: 'issue'
title: 'Relates to #'
body: 'Relates to #'
- label: 'task'
title: '[chore]'
- label: 'dependencies'
title: '[deps]'
- label: 'docs'
title: '[docs]'
- label: 'build'
title: '[build]'
categories:
- title: '🚀 Features'
labels:
- 'feature'
- title: '✅ Issues'
labels:
- 'issue'
- title: '🧰 Tasks'
labels:
- 'task'
- title: '📝 Documentation'
labels:
- 'docs'
- title: '⚙️ Dependencies'
labels:
- 'dependencies'
- title: 'Build'
labels:
- 'build'
hide:
categories:
- 'Build'
contributors:
- 'GitHub'
replacers:
- search: '\[chore\] '
- search: '\[deps\] '
- search: '\[docs\] '
- search: '\[build\] '
#announce:
# twitter:
# active: release
# status: 🚀 {{projectName}} {{projectVersion}} has been released! {{releaseNotesUrl}}