Skip to content

Commit a81cbcc

Browse files
committed
Add release drafter
1 parent ef6c18f commit a81cbcc

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.github/release-drafter.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name-template: '$NEXT_MINOR_VERSION'
2+
tag-template: 'v$NEXT_MINOR_VERSION'
3+
categories:
4+
- title: 'Added'
5+
labels:
6+
- 'feature'
7+
- title: 'Changed'
8+
labels:
9+
- 'enhancement'
10+
- 'dependency-update'
11+
- title: 'Fixed'
12+
labels:
13+
- 'fix'
14+
- 'bugfix'
15+
- 'bug'
16+
exclude-labels:
17+
- 'skip-changelog'
18+
- 'docs'
19+
- 'build'
20+
change-template: '- $TITLE [#$NUMBER](https://github.com/pdal/java/pull/$NUMBER) (@$AUTHOR)'
21+
template: |
22+
$CHANGES
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+
- main
7+
pull_request:
8+
types: [opened, reopened, synchronize]
9+
10+
jobs:
11+
update_release_draft:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: release-drafter/[email protected]
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)